Index: src/string.js |
diff --git a/src/string.js b/src/string.js |
index 14350732b66131c1bc271c2a35f5bb5e3167a5f2..fa57b9ad806b378f9ae91864eda478237750f60c 100644 |
--- a/src/string.js |
+++ b/src/string.js |
@@ -1118,14 +1118,14 @@ function StringRaw(callSite) { |
GlobalString.prototype, "constructor", GlobalString, DONT_ENUM); |
// Set up the non-enumerable functions on the String object. |
-InstallFunctions(GlobalString, DONT_ENUM, [ |
+$installFunctions(GlobalString, DONT_ENUM, [ |
"fromCharCode", StringFromCharCode, |
"fromCodePoint", StringFromCodePoint, |
"raw", StringRaw |
]); |
// Set up the non-enumerable functions on the String prototype object. |
-InstallFunctions(GlobalString.prototype, DONT_ENUM, [ |
+$installFunctions(GlobalString.prototype, DONT_ENUM, [ |
"valueOf", StringValueOf, |
"toString", StringToString, |
"charAt", StringCharAtJS, |