Index: src/harmony-typedarray.js |
diff --git a/src/harmony-typedarray.js b/src/harmony-typedarray.js |
index a6cba2e61d607582fd9b619594be7a8921de648c..7fc01cb801a9e6470899c042a9f09ce9a6c3992d 100644 |
--- a/src/harmony-typedarray.js |
+++ b/src/harmony-typedarray.js |
@@ -7,6 +7,8 @@ |
"use strict"; |
%CheckIsBootstrapping(); |
+ |
+// ------------------------------------------------------------------- |
macro TYPED_ARRAYS(FUNCTION) |
// arrayIds below should be synchronized with Runtime_TypedArrayInitialize. |
@@ -21,13 +23,6 @@ |
FUNCTION(9, Uint8ClampedArray, 1) |
endmacro |
-macro DECLARE_GLOBALS(INDEX, NAME, SIZE) |
-var GlobalNAME = global.NAME; |
-endmacro |
- |
-TYPED_ARRAYS(DECLARE_GLOBALS) |
- |
-// ------------------------------------------------------------------- |
macro TYPED_ARRAY_HARMONY_ADDITIONS(ARRAY_ID, NAME, ELEMENT_SIZE) |
@@ -79,12 +74,12 @@ |
macro EXTEND_TYPED_ARRAY(ARRAY_ID, NAME, ELEMENT_SIZE) |
// Set up non-enumerable functions on the object. |
- $installFunctions(GlobalNAME, DONT_ENUM | DONT_DELETE | READ_ONLY, [ |
+ InstallFunctions(global.NAME, DONT_ENUM | DONT_DELETE | READ_ONLY, [ |
"of", NAMEOf |
]); |
// Set up non-enumerable functions on the prototype object. |
- $installFunctions(GlobalNAME.prototype, DONT_ENUM, [ |
+ InstallFunctions(global.NAME.prototype, DONT_ENUM, [ |
"forEach", NAMEForEach |
]); |
endmacro |