Index: src/arraybuffer.js |
diff --git a/src/arraybuffer.js b/src/arraybuffer.js |
index bfd8693d8bdf995314247cace3e3e4b321345fe9..78f3102aa878ed742f3e2b622144800a3e90247d 100644 |
--- a/src/arraybuffer.js |
+++ b/src/arraybuffer.js |
@@ -83,13 +83,13 @@ function ArrayBufferIsViewJS(obj) { |
%AddNamedProperty(GlobalArrayBuffer.prototype, |
symbolToStringTag, "ArrayBuffer", DONT_ENUM | READ_ONLY); |
-InstallGetter(GlobalArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLen); |
+$installGetter(GlobalArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLen); |
-InstallFunctions(GlobalArrayBuffer, DONT_ENUM, [ |
+$installFunctions(GlobalArrayBuffer, DONT_ENUM, [ |
"isView", ArrayBufferIsViewJS |
]); |
-InstallFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [ |
+$installFunctions(GlobalArrayBuffer.prototype, DONT_ENUM, [ |
"slice", ArrayBufferSlice |
]); |