| Index: src/js/v8natives.js
|
| diff --git a/src/js/v8natives.js b/src/js/v8natives.js
|
| index 9e437a3f028f1ab59586d92f1824b21692fd237b..5dfe877a175d15c32ffce08c4a27e58c5fcf199d 100644
|
| --- a/src/js/v8natives.js
|
| +++ b/src/js/v8natives.js
|
| @@ -397,9 +397,9 @@ utils.InstallConstants(GlobalNumber, [
|
|
|
| // --- Harmony constants (no spec refs until settled.)
|
|
|
| - "MAX_SAFE_INTEGER", %_MathPow(2, 53) - 1,
|
| - "MIN_SAFE_INTEGER", -%_MathPow(2, 53) + 1,
|
| - "EPSILON", %_MathPow(2, -52)
|
| + "MAX_SAFE_INTEGER", 9007199254740991,
|
| + "MIN_SAFE_INTEGER", -9007199254740991,
|
| + "EPSILON", 2.220446049250313e-16,
|
| ]);
|
|
|
| // Set up non-enumerable functions on the Number prototype object.
|
|
|