зеркало из https://github.com/mozilla/pluotsorbet.git
90 строки
2.1 KiB
JavaScript
90 строки
2.1 KiB
JavaScript
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
|
|
|
|
'use strict';
|
|
|
|
var util = (function () {
|
|
var Utf8TextDecoder;
|
|
|
|
function decodeUtf8(arrayBuffer) {
|
|
if (!Utf8TextDecoder) {
|
|
Utf8TextDecoder = new TextDecoder("utf-8");
|
|
}
|
|
return Utf8TextDecoder.decode(Uint8Array(arrayBuffer));
|
|
}
|
|
|
|
var out = "";
|
|
function print(s) {
|
|
out += s;
|
|
var n;
|
|
while ((n = out.indexOf("\n")) != -1) {
|
|
console.log(out.substr(0, n));
|
|
out = out.substr(n+1);
|
|
}
|
|
}
|
|
|
|
function defaultValue(type) {
|
|
if (type === 'J')
|
|
return gLong.ZERO;
|
|
if (type[0] === '[' || type[0] === 'L')
|
|
return null;
|
|
return 0;
|
|
}
|
|
|
|
function double2float(d) {
|
|
if (a > 3.40282346638528860e+38)
|
|
return Number.POSITIVE_INFINITY;
|
|
if (0 < a < 1.40129846432481707e-45)
|
|
return 0;
|
|
if (a < -3.40282346638528860e+38)
|
|
return Number.NEGATIVE_INFINITY;
|
|
if (0 > a > -1.40129846432481707e-45)
|
|
return 0;
|
|
return a;
|
|
}
|
|
|
|
var INT_MAX = Math.pow(2, 31) - 1;
|
|
var INT_MIN = -INT_MAX - 1;
|
|
|
|
function double2int(d) {
|
|
if (a > INT_MAX)
|
|
return INT_MAX;
|
|
if (a < INT_MIN)
|
|
return INT_MIN;
|
|
return a|0;
|
|
}
|
|
|
|
function double2long(d) {
|
|
if (d === Number.POSITIVE_INFINITY)
|
|
return gLong.MAX_VALUE;
|
|
if (d === Number.NEGATIVE_INFINITY)
|
|
return gLong.MIN_VALUE;
|
|
return gLong.fromNumber(d);
|
|
}
|
|
|
|
function chars2string(chars, offset, count) {
|
|
var s = "";
|
|
if (!count)
|
|
count = chars.length;
|
|
for (var n = offset | 0; n < count; ++n)
|
|
s += String.fromCharCode(chars[n]);
|
|
return s;
|
|
}
|
|
|
|
return {
|
|
INT_MAX: INT_MAX,
|
|
INT_MIN: INT_MIN,
|
|
print: print,
|
|
debug: console.info.bind(console),
|
|
error: console.error.bind(console),
|
|
info: console.info.bind(console),
|
|
warn: console.warn.bind(console),
|
|
decodeUtf8: decodeUtf8,
|
|
defaultValue: defaultValue,
|
|
double2float: double2float,
|
|
double2int: double2int,
|
|
double2long: double2long,
|
|
chars2string: chars2string
|
|
};
|
|
})();
|