| Index: src/collection-iterator.js
|
| diff --git a/src/collection-iterator.js b/src/collection-iterator.js
|
| index 8cae6060d0659c90fd129dfdb294aee54dc409ea..0db9f1bbbb66bb62734467fa8cda8e7353189a69 100644
|
| --- a/src/collection-iterator.js
|
| +++ b/src/collection-iterator.js
|
| @@ -70,14 +70,14 @@
|
| %SetCode(SetIterator, SetIteratorConstructor);
|
| %FunctionSetPrototype(SetIterator, {__proto__: $iteratorPrototype});
|
| %FunctionSetInstanceClassName(SetIterator, 'Set Iterator');
|
| -utils.InstallFunctions(SetIterator.prototype, DONT_ENUM, [
|
| +$installFunctions(SetIterator.prototype, DONT_ENUM, [
|
| 'next', SetIteratorNextJS
|
| ]);
|
|
|
| %AddNamedProperty(SetIterator.prototype, symbolToStringTag,
|
| "Set Iterator", READ_ONLY | DONT_ENUM);
|
|
|
| -utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
|
| +$installFunctions(GlobalSet.prototype, DONT_ENUM, [
|
| 'entries', SetEntries,
|
| 'keys', SetValues,
|
| 'values', SetValues
|
| @@ -152,7 +152,7 @@
|
| %SetCode(MapIterator, MapIteratorConstructor);
|
| %FunctionSetPrototype(MapIterator, {__proto__: $iteratorPrototype});
|
| %FunctionSetInstanceClassName(MapIterator, 'Map Iterator');
|
| -utils.InstallFunctions(MapIterator.prototype, DONT_ENUM, [
|
| +$installFunctions(MapIterator.prototype, DONT_ENUM, [
|
| 'next', MapIteratorNextJS
|
| ]);
|
|
|
| @@ -160,7 +160,7 @@
|
| "Map Iterator", READ_ONLY | DONT_ENUM);
|
|
|
|
|
| -utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
|
| +$installFunctions(GlobalMap.prototype, DONT_ENUM, [
|
| 'entries', MapEntries,
|
| 'keys', MapKeys,
|
| 'values', MapValues
|
|
|