Index: src/harmony-typedarray.js |
diff --git a/src/harmony-typedarray.js b/src/harmony-typedarray.js |
index c2eb452af378ca1b2b240653a2de04e06777df16..d692a5f1bc5cdca4ba5a6d265d72fc0a5165902a 100644 |
--- a/src/harmony-typedarray.js |
+++ b/src/harmony-typedarray.js |
@@ -79,14 +79,14 @@ macro EXTEND_TYPED_ARRAY(ARRAY_ID, NAME, ELEMENT_SIZE) |
%CheckIsBootstrapping(); |
// Set up non-enumerable functions on the object. |
- InstallFunctions(global.NAME, DONT_ENUM | DONT_DELETE | READ_ONLY, $Array( |
+ InstallFunctions(global.NAME, DONT_ENUM | DONT_DELETE | READ_ONLY, [ |
"of", NAMEOf |
- )); |
+ ]); |
// Set up non-enumerable functions on the prototype object. |
- InstallFunctions(global.NAME.prototype, DONT_ENUM, $Array( |
+ InstallFunctions(global.NAME.prototype, DONT_ENUM, [ |
"forEach", NAMEForEach |
- )); |
+ ]); |
endmacro |
TYPED_ARRAYS(EXTEND_TYPED_ARRAY) |