| Index: src/string.js
|
| diff --git a/src/string.js b/src/string.js
|
| index fa57b9ad806b378f9ae91864eda478237750f60c..14350732b66131c1bc271c2a35f5bb5e3167a5f2 100644
|
| --- a/src/string.js
|
| +++ b/src/string.js
|
| @@ -1118,14 +1118,14 @@
|
| 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,
|
|
|