Index: src/arraybuffer.js |
diff --git a/src/arraybuffer.js b/src/arraybuffer.js |
index 774b1cf54a4b48ac5273471e9fdaba23ad1fbf0b..2a6ef8029753194f67dce54cb3dfc924ae583f6d 100644 |
--- a/src/arraybuffer.js |
+++ b/src/arraybuffer.js |
@@ -83,13 +83,13 @@ |
%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 |
]); |