Add fmod compiler test

This commit is contained in:
dcodeIO
2018-01-02 23:01:06 +01:00
parent 1221ff129d
commit f507fc8168
5 changed files with 1133 additions and 0 deletions

View File

@ -45,6 +45,8 @@ Object.defineProperties(
Object.defineProperties(
globalScope["f32"] = function f32(value) { return Math.fround(value); }
, {
"MIN_VALUE": { value: Math.fround(-3.40282347e+38), writable: false },
"MAX_VALUE": { value: Math.fround(3.40282347e+38), writable: false },
"MIN_SAFE_INTEGER": { value: -16777215, writable: false },
"MAX_SAFE_INTEGER": { value: 16777215, writable: false },
"EPSILON": { value: Math.fround(1.19209290e-07), writable: false }
@ -52,6 +54,8 @@ Object.defineProperties(
Object.defineProperties(
globalScope["f64"] = function f64(value) { return +value; }
, {
"MIN_VALUE": { value: -1.7976931348623157e+308, writable: false },
"MAX_VALUE": { value: 1.7976931348623157e+308, writable: false },
"MIN_SAFE_INTEGER": { value: -9007199254740991, writable: false },
"MAX_SAFE_INTEGER": { value: 9007199254740991, writable: false },
"EPSILON": { value: 2.2204460492503131e-16, writable: false }