| Index: src/collection-iterator.js
 | 
| diff --git a/src/collection-iterator.js b/src/collection-iterator.js
 | 
| index 464703ca483db3f20add38f3686d27cbf3ccd20c..d2e0af93c01e61c5f43af3119bf9de411123e2c3 100644
 | 
| --- a/src/collection-iterator.js
 | 
| +++ b/src/collection-iterator.js
 | 
| @@ -76,17 +76,17 @@
 | 
|  %SetCode(SetIterator, SetIteratorConstructor);
 | 
|  %FunctionSetPrototype(SetIterator, new GlobalObject());
 | 
|  %FunctionSetInstanceClassName(SetIterator, 'Set Iterator');
 | 
| -$installFunctions(SetIterator.prototype, DONT_ENUM, [
 | 
| +InstallFunctions(SetIterator.prototype, DONT_ENUM, [
 | 
|    'next', SetIteratorNextJS
 | 
|  ]);
 | 
|  
 | 
| -$setFunctionName(SetIteratorSymbolIterator, symbolIterator);
 | 
| +SetFunctionName(SetIteratorSymbolIterator, symbolIterator);
 | 
|  %AddNamedProperty(SetIterator.prototype, symbolIterator,
 | 
|      SetIteratorSymbolIterator, DONT_ENUM);
 | 
|  %AddNamedProperty(SetIterator.prototype, symbolToStringTag,
 | 
|      "Set Iterator", READ_ONLY | DONT_ENUM);
 | 
|  
 | 
| -$installFunctions(GlobalSet.prototype, DONT_ENUM, [
 | 
| +InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
 | 
|    'entries', SetEntries,
 | 
|    'keys', SetValues,
 | 
|    'values', SetValues
 | 
| @@ -166,18 +166,18 @@
 | 
|  %SetCode(MapIterator, MapIteratorConstructor);
 | 
|  %FunctionSetPrototype(MapIterator, new GlobalObject());
 | 
|  %FunctionSetInstanceClassName(MapIterator, 'Map Iterator');
 | 
| -$installFunctions(MapIterator.prototype, DONT_ENUM, [
 | 
| +InstallFunctions(MapIterator.prototype, DONT_ENUM, [
 | 
|    'next', MapIteratorNextJS
 | 
|  ]);
 | 
|  
 | 
| -$setFunctionName(MapIteratorSymbolIterator, symbolIterator);
 | 
| +SetFunctionName(MapIteratorSymbolIterator, symbolIterator);
 | 
|  %AddNamedProperty(MapIterator.prototype, symbolIterator,
 | 
|      MapIteratorSymbolIterator, DONT_ENUM);
 | 
|  %AddNamedProperty(MapIterator.prototype, symbolToStringTag,
 | 
|      "Map Iterator", READ_ONLY | DONT_ENUM);
 | 
|  
 | 
|  
 | 
| -$installFunctions(GlobalMap.prototype, DONT_ENUM, [
 | 
| +InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
 | 
|    'entries', MapEntries,
 | 
|    'keys', MapKeys,
 | 
|    'values', MapValues
 | 
| 
 |