Index: src/arraybuffer.js |
diff --git a/src/arraybuffer.js b/src/arraybuffer.js |
index ebc9f4f3bd77e4167676f7d01b9e67049db202e2..eebf2f7bc90ea28e8eb2ff73c683bc8fc69f38b1 100644 |
--- a/src/arraybuffer.js |
+++ b/src/arraybuffer.js |
@@ -7,6 +7,7 @@ |
"use strict"; |
%CheckIsBootstrapping(); |
+ |
// ------------------------------------------------------------------- |
// Imports |
@@ -94,13 +95,13 @@ |
%AddNamedProperty(GlobalArrayBuffer.prototype, |
symbolToStringTag, "ArrayBuffer", DONT_ENUM | READ_ONLY); |
-utils.InstallGetter(GlobalArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLen); |
+$installGetter(GlobalArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLen); |
-utils.InstallFunctions(GlobalArrayBuffer, DONT_ENUM, [ |
+$installFunctions(GlobalArrayBuffer, DONT_ENUM, [ |
"isView", ArrayBufferIsViewJS |
]); |
-utils.InstallFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [ |
+$installFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [ |
"slice", ArrayBufferSlice |
]); |