Index: src/date.js |
diff --git a/src/date.js b/src/date.js |
index 577957d7722a6779aaaadb12b7518433997105c5..11cf4e91e79b3a007182e3615232cfee87b3394b 100644 |
--- a/src/date.js |
+++ b/src/date.js |
@@ -760,7 +760,7 @@ |
%FunctionSetPrototype(GlobalDate, new GlobalDate(NAN)); |
// Set up non-enumerable properties of the Date object itself. |
-$installFunctions(GlobalDate, DONT_ENUM, [ |
+InstallFunctions(GlobalDate, DONT_ENUM, [ |
"UTC", DateUTC, |
"parse", DateParse, |
"now", DateNow |
@@ -771,7 +771,7 @@ |
// Set up non-enumerable functions of the Date prototype object and |
// set their names. |
-$installFunctions(GlobalDate.prototype, DONT_ENUM, [ |
+InstallFunctions(GlobalDate.prototype, DONT_ENUM, [ |
"toString", DateToString, |
"toDateString", DateToDateString, |
"toTimeString", DateToTimeString, |