| Index: src/weak-collection.js
|
| diff --git a/src/weak-collection.js b/src/weak-collection.js
|
| index ccb2c35e2b4adf613511d56bd4e68548336abfc8..9f207861e39c33b744c5a2c5dd81f91e7039041e 100644
|
| --- a/src/weak-collection.js
|
| +++ b/src/weak-collection.js
|
| @@ -90,7 +90,7 @@ function WeakMapDelete(key) {
|
| DONT_ENUM | READ_ONLY);
|
|
|
| // Set up the non-enumerable functions on the WeakMap prototype object.
|
| -InstallFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
|
| +$installFunctions(GlobalWeakMap.prototype, DONT_ENUM, [
|
| "get", WeakMapGet,
|
| "set", WeakMapSet,
|
| "has", WeakMapHas,
|
| @@ -162,7 +162,7 @@ function WeakSetDelete(value) {
|
| DONT_ENUM | READ_ONLY);
|
|
|
| // Set up the non-enumerable functions on the WeakSet prototype object.
|
| -InstallFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
|
| +$installFunctions(GlobalWeakSet.prototype, DONT_ENUM, [
|
| "add", WeakSetAdd,
|
| "has", WeakSetHas,
|
| "delete", WeakSetDelete
|
|
|