| Index: src/arraybuffer.js
|
| diff --git a/src/arraybuffer.js b/src/arraybuffer.js
|
| index 2a6ef8029753194f67dce54cb3dfc924ae583f6d..774b1cf54a4b48ac5273471e9fdaba23ad1fbf0b 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
|
| ]);
|
|
|
|
|