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