Index: src/math.js |
diff --git a/src/math.js b/src/math.js |
index 1a5a1056f83c9f88d5a3e2c0fbca920de76ff990..04c27b606f02f6fab65034b13677c1542c13769b 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, |