| Index: src/weak-collection.js
|
| diff --git a/src/weak-collection.js b/src/weak-collection.js
|
| index 0e71c7cc147494263ef0926a56e1de0ed335e065..29ef5d497e1aa0468d52ef6f9a08b59c5ca794fa 100644
|
| --- a/src/weak-collection.js
|
| +++ b/src/weak-collection.js
|
| @@ -88,7 +88,7 @@
|
| DONT_ENUM | READ_ONLY);
|
|
|
| // Set up the non-enumerable functions on the WeakMap prototype object.
|
| -utils.InstallFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
|
| +$installFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
|
| "get", WeakMapGet,
|
| "set", WeakMapSet,
|
| "has", WeakMapHas,
|
| @@ -158,7 +158,7 @@
|
| DONT_ENUM | READ_ONLY);
|
|
|
| // Set up the non-enumerable functions on the WeakSet prototype object.
|
| -utils.InstallFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
|
| +$installFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
|
| "add", WeakSetAdd,
|
| "has", WeakSetHas,
|
| "delete", WeakSetDelete
|
|
|