Index: src/weak-collection.js |
diff --git a/src/weak-collection.js b/src/weak-collection.js |
index 02804aff72e399a0450c79dbcbae4a270756bc90..f7c3e290df588bcd4da0d60b1a4f1dda93dacb2e 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 |