summaryrefslogtreecommitdiff
path: root/deps/v8/src/collection.js
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-02-25 22:45:23 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2013-02-25 23:45:02 +0100
commitb15a10e7a014674ef6f71c51ad84032fb7b802e2 (patch)
tree3bb04a6cb05c7a37c385eda4521b8a9e7bcd736f /deps/v8/src/collection.js
parent34046084c0665c8bb2dfd84683dcf29d7ffbad2d (diff)
downloadnode-new-b15a10e7a014674ef6f71c51ad84032fb7b802e2.tar.gz
deps: downgrade v8 to 3.14.5
V8 3.15 and newer have stability and performance issues. Roll back to a known-good version.
Diffstat (limited to 'deps/v8/src/collection.js')
-rw-r--r--deps/v8/src/collection.js46
1 files changed, 2 insertions, 44 deletions
diff --git a/deps/v8/src/collection.js b/deps/v8/src/collection.js
index b3c2db72d7..d36fe18fa0 100644
--- a/deps/v8/src/collection.js
+++ b/deps/v8/src/collection.js
@@ -88,25 +88,6 @@ function SetDelete(key) {
}
-function SetGetSize() {
- if (!IS_SET(this)) {
- throw MakeTypeError('incompatible_method_receiver',
- ['Set.prototype.size', this]);
- }
- return %SetGetSize(this);
-}
-
-
-function SetClear() {
- if (!IS_SET(this)) {
- throw MakeTypeError('incompatible_method_receiver',
- ['Set.prototype.clear', this]);
- }
- // Replace the internal table with a new empty table.
- %SetInitialize(this);
-}
-
-
function MapConstructor() {
if (%_IsConstructCall()) {
%MapInitialize(this);
@@ -164,25 +145,6 @@ function MapDelete(key) {
}
-function MapGetSize() {
- if (!IS_MAP(this)) {
- throw MakeTypeError('incompatible_method_receiver',
- ['Map.prototype.size', this]);
- }
- return %MapGetSize(this);
-}
-
-
-function MapClear() {
- if (!IS_MAP(this)) {
- throw MakeTypeError('incompatible_method_receiver',
- ['Map.prototype.clear', this]);
- }
- // Replace the internal table with a new empty table.
- %MapInitialize(this);
-}
-
-
function WeakMapConstructor() {
if (%_IsConstructCall()) {
%WeakMapInitialize(this);
@@ -253,22 +215,18 @@ function WeakMapDelete(key) {
%SetProperty($Map.prototype, "constructor", $Map, DONT_ENUM);
// Set up the non-enumerable functions on the Set prototype object.
- InstallGetter($Set.prototype, "size", SetGetSize);
InstallFunctions($Set.prototype, DONT_ENUM, $Array(
"add", SetAdd,
"has", SetHas,
- "delete", SetDelete,
- "clear", SetClear
+ "delete", SetDelete
));
// Set up the non-enumerable functions on the Map prototype object.
- InstallGetter($Map.prototype, "size", MapGetSize);
InstallFunctions($Map.prototype, DONT_ENUM, $Array(
"get", MapGet,
"set", MapSet,
"has", MapHas,
- "delete", MapDelete,
- "clear", MapClear
+ "delete", MapDelete
));
// Set up the WeakMap constructor function.