Index: src/math.js |
diff --git a/src/math.js b/src/math.js |
index 13bcf0f655a114a0b29423d4149390ecce9ac0de..b5b442f412b4f5219494600d0db95a7eaeedd86d 100644 |
--- a/src/math.js |
+++ b/src/math.js |
@@ -294,7 +294,7 @@ var Math = new MathConstructor(); |
%AddNamedProperty(Math, symbolToStringTag, "Math", READ_ONLY | DONT_ENUM); |
// Set up math constants. |
-InstallConstants(Math, [ |
+$installConstants(Math, [ |
// ECMA-262, section 15.8.1.1. |
"E", 2.7182818284590452354, |
// ECMA-262, section 15.8.1.2. |
@@ -311,7 +311,7 @@ InstallConstants(Math, [ |
// Set up non-enumerable functions of the Math object and |
// set their names. |
-InstallFunctions(Math, DONT_ENUM, [ |
+$installFunctions(Math, DONT_ENUM, [ |
"random", MathRandom, |
"abs", MathAbs, |
"acos", MathAcosJS, |