Index: src/collection.js |
diff --git a/src/collection.js b/src/collection.js |
index d93b8f82012a91e5d796ba369656c2b9fbe58295..d1b16beda6772b7c9fa7072d7a5526152a2ab47d 100644 |
--- a/src/collection.js |
+++ b/src/collection.js |
@@ -56,7 +56,7 @@ function SetAddJS(key) { |
if (key === 0) { |
key = 0; |
} |
- return %SetAdd(this, key); |
+ return %_SetAdd(this, key); |
} |
@@ -74,7 +74,7 @@ function SetDeleteJS(key) { |
throw MakeTypeError('incompatible_method_receiver', |
['Set.prototype.delete', this]); |
} |
- return %SetDelete(this, key); |
+ return %_SetDelete(this, key); |
} |
@@ -209,7 +209,7 @@ function MapSetJS(key, value) { |
if (key === 0) { |
key = 0; |
} |
- return %MapSet(this, key, value); |
+ return %_MapSet(this, key, value); |
} |
@@ -227,7 +227,7 @@ function MapDeleteJS(key) { |
throw MakeTypeError('incompatible_method_receiver', |
['Map.prototype.delete', this]); |
} |
- return %MapDelete(this, key); |
+ return %_MapDelete(this, key); |
} |