| Index: src/arraybuffer.js
|
| diff --git a/src/arraybuffer.js b/src/arraybuffer.js
|
| index cbb51433bb68e7781aa98443019f88d64f8d9c49..e4d332b060cbc6d7be90d274a25e302898754078 100644
|
| --- a/src/arraybuffer.js
|
| +++ b/src/arraybuffer.js
|
| @@ -82,13 +82,13 @@ function SetUpArrayBuffer() {
|
|
|
| InstallGetter($ArrayBuffer.prototype, "byteLength", ArrayBufferGetByteLen);
|
|
|
| - InstallFunctions($ArrayBuffer, DONT_ENUM, $Array(
|
| - "isView", ArrayBufferIsViewJS
|
| - ));
|
| + InstallFunctions($ArrayBuffer, DONT_ENUM, [
|
| + "isView", ArrayBufferIsViewJS
|
| + ]);
|
|
|
| - InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, $Array(
|
| - "slice", ArrayBufferSlice
|
| - ));
|
| + InstallFunctions($ArrayBuffer.prototype, DONT_ENUM, [
|
| + "slice", ArrayBufferSlice
|
| + ]);
|
| }
|
|
|
| SetUpArrayBuffer();
|
|
|