Index: src/array-iterator.js |
diff --git a/src/array-iterator.js b/src/array-iterator.js |
index 45a432ef51cd0396dd0ee96bba98258b24368c23..0c7cda3aeccc3dc47326eac40c724c1363cf12de 100644 |
--- a/src/array-iterator.js |
+++ b/src/array-iterator.js |
@@ -125,16 +125,16 @@ |
%FunctionSetPrototype(ArrayIterator, new GlobalObject()); |
%FunctionSetInstanceClassName(ArrayIterator, 'Array Iterator'); |
-$installFunctions(ArrayIterator.prototype, DONT_ENUM, [ |
+InstallFunctions(ArrayIterator.prototype, DONT_ENUM, [ |
'next', ArrayIteratorNext |
]); |
-$setFunctionName(ArrayIteratorIterator, symbolIterator); |
+SetFunctionName(ArrayIteratorIterator, symbolIterator); |
%AddNamedProperty(ArrayIterator.prototype, symbolIterator, |
ArrayIteratorIterator, DONT_ENUM); |
%AddNamedProperty(ArrayIterator.prototype, symbolToStringTag, |
"Array Iterator", READ_ONLY | DONT_ENUM); |
-$installFunctions(GlobalArray.prototype, DONT_ENUM, [ |
+InstallFunctions(GlobalArray.prototype, DONT_ENUM, [ |
// No 'values' since it breaks webcompat: http://crbug.com/409858 |
'entries', ArrayEntries, |
'keys', ArrayKeys |