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