8ad35cb288
This is to reduce code duplication but also to get the correct behavior when we make for-of handle abrupt completion correctly. BUG=None LOG=N R=adamk Review URL: https://codereview.chromium.org/956623003 Cr-Commit-Position: refs/heads/master@{#26834}
286 lines
7.3 KiB
JavaScript
286 lines
7.3 KiB
JavaScript
// Copyright 2012 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
"use strict";
|
|
|
|
// This file relies on the fact that the following declaration has been made
|
|
// in runtime.js:
|
|
// var $Array = global.Array;
|
|
|
|
var $Set = global.Set;
|
|
var $Map = global.Map;
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
// Harmony Set
|
|
|
|
function SetConstructor(iterable) {
|
|
if (!%_IsConstructCall()) {
|
|
throw MakeTypeError('constructor_not_function', ['Set']);
|
|
}
|
|
|
|
%_SetInitialize(this);
|
|
|
|
if (!IS_NULL_OR_UNDEFINED(iterable)) {
|
|
var adder = this.add;
|
|
if (!IS_SPEC_FUNCTION(adder)) {
|
|
throw MakeTypeError('property_not_function', ['add', this]);
|
|
}
|
|
|
|
for (var value of iterable) {
|
|
%_CallFunction(this, value, adder);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function SetAddJS(key) {
|
|
if (!IS_SET(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Set.prototype.add', this]);
|
|
}
|
|
// Normalize -0 to +0 as required by the spec.
|
|
// Even though we use SameValueZero as the comparison for the keys we don't
|
|
// want to ever store -0 as the key since the key is directly exposed when
|
|
// doing iteration.
|
|
if (key === 0) {
|
|
key = 0;
|
|
}
|
|
return %_SetAdd(this, key);
|
|
}
|
|
|
|
|
|
function SetHasJS(key) {
|
|
if (!IS_SET(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Set.prototype.has', this]);
|
|
}
|
|
return %_SetHas(this, key);
|
|
}
|
|
|
|
|
|
function SetDeleteJS(key) {
|
|
if (!IS_SET(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Set.prototype.delete', this]);
|
|
}
|
|
return %_SetDelete(this, key);
|
|
}
|
|
|
|
|
|
function SetGetSizeJS() {
|
|
if (!IS_SET(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Set.prototype.size', this]);
|
|
}
|
|
return %_SetGetSize(this);
|
|
}
|
|
|
|
|
|
function SetClearJS() {
|
|
if (!IS_SET(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Set.prototype.clear', this]);
|
|
}
|
|
%_SetClear(this);
|
|
}
|
|
|
|
|
|
function SetForEach(f, receiver) {
|
|
if (!IS_SET(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Set.prototype.forEach', this]);
|
|
}
|
|
|
|
if (!IS_SPEC_FUNCTION(f)) {
|
|
throw MakeTypeError('called_non_callable', [f]);
|
|
}
|
|
var needs_wrapper = false;
|
|
if (IS_NULL_OR_UNDEFINED(receiver)) {
|
|
receiver = %GetDefaultReceiver(f) || receiver;
|
|
} else {
|
|
needs_wrapper = SHOULD_CREATE_WRAPPER(f, receiver);
|
|
}
|
|
|
|
var iterator = new SetIterator(this, ITERATOR_KIND_VALUES);
|
|
var key;
|
|
var stepping = DEBUG_IS_ACTIVE && %DebugCallbackSupportsStepping(f);
|
|
var value_array = [UNDEFINED];
|
|
while (%SetIteratorNext(iterator, value_array)) {
|
|
if (stepping) %DebugPrepareStepInIfStepping(f);
|
|
key = value_array[0];
|
|
var new_receiver = needs_wrapper ? ToObject(receiver) : receiver;
|
|
%_CallFunction(new_receiver, key, key, this, f);
|
|
}
|
|
}
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
function SetUpSet() {
|
|
%CheckIsBootstrapping();
|
|
|
|
%SetCode($Set, SetConstructor);
|
|
%FunctionSetPrototype($Set, new $Object());
|
|
%AddNamedProperty($Set.prototype, "constructor", $Set, DONT_ENUM);
|
|
%AddNamedProperty(
|
|
$Set.prototype, symbolToStringTag, "Set", DONT_ENUM | READ_ONLY);
|
|
|
|
%FunctionSetLength(SetForEach, 1);
|
|
|
|
// Set up the non-enumerable functions on the Set prototype object.
|
|
InstallGetter($Set.prototype, "size", SetGetSizeJS);
|
|
InstallFunctions($Set.prototype, DONT_ENUM, $Array(
|
|
"add", SetAddJS,
|
|
"has", SetHasJS,
|
|
"delete", SetDeleteJS,
|
|
"clear", SetClearJS,
|
|
"forEach", SetForEach
|
|
));
|
|
}
|
|
|
|
SetUpSet();
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
// Harmony Map
|
|
|
|
function MapConstructor(iterable) {
|
|
if (!%_IsConstructCall()) {
|
|
throw MakeTypeError('constructor_not_function', ['Map']);
|
|
}
|
|
|
|
%_MapInitialize(this);
|
|
|
|
if (!IS_NULL_OR_UNDEFINED(iterable)) {
|
|
var adder = this.set;
|
|
if (!IS_SPEC_FUNCTION(adder)) {
|
|
throw MakeTypeError('property_not_function', ['set', this]);
|
|
}
|
|
|
|
for (var nextItem of iterable) {
|
|
if (!IS_SPEC_OBJECT(nextItem)) {
|
|
throw MakeTypeError('iterator_value_not_an_object', [nextItem]);
|
|
}
|
|
%_CallFunction(this, nextItem[0], nextItem[1], adder);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
function MapGetJS(key) {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.get', this]);
|
|
}
|
|
return %_MapGet(this, key);
|
|
}
|
|
|
|
|
|
function MapSetJS(key, value) {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.set', this]);
|
|
}
|
|
// Normalize -0 to +0 as required by the spec.
|
|
// Even though we use SameValueZero as the comparison for the keys we don't
|
|
// want to ever store -0 as the key since the key is directly exposed when
|
|
// doing iteration.
|
|
if (key === 0) {
|
|
key = 0;
|
|
}
|
|
return %_MapSet(this, key, value);
|
|
}
|
|
|
|
|
|
function MapHasJS(key) {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.has', this]);
|
|
}
|
|
return %_MapHas(this, key);
|
|
}
|
|
|
|
|
|
function MapDeleteJS(key) {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.delete', this]);
|
|
}
|
|
return %_MapDelete(this, key);
|
|
}
|
|
|
|
|
|
function MapGetSizeJS() {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.size', this]);
|
|
}
|
|
return %_MapGetSize(this);
|
|
}
|
|
|
|
|
|
function MapClearJS() {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.clear', this]);
|
|
}
|
|
%_MapClear(this);
|
|
}
|
|
|
|
|
|
function MapForEach(f, receiver) {
|
|
if (!IS_MAP(this)) {
|
|
throw MakeTypeError('incompatible_method_receiver',
|
|
['Map.prototype.forEach', this]);
|
|
}
|
|
|
|
if (!IS_SPEC_FUNCTION(f)) {
|
|
throw MakeTypeError('called_non_callable', [f]);
|
|
}
|
|
var needs_wrapper = false;
|
|
if (IS_NULL_OR_UNDEFINED(receiver)) {
|
|
receiver = %GetDefaultReceiver(f) || receiver;
|
|
} else {
|
|
needs_wrapper = SHOULD_CREATE_WRAPPER(f, receiver);
|
|
}
|
|
|
|
var iterator = new MapIterator(this, ITERATOR_KIND_ENTRIES);
|
|
var stepping = DEBUG_IS_ACTIVE && %DebugCallbackSupportsStepping(f);
|
|
var value_array = [UNDEFINED, UNDEFINED];
|
|
while (%MapIteratorNext(iterator, value_array)) {
|
|
if (stepping) %DebugPrepareStepInIfStepping(f);
|
|
var new_receiver = needs_wrapper ? ToObject(receiver) : receiver;
|
|
%_CallFunction(new_receiver, value_array[1], value_array[0], this, f);
|
|
}
|
|
}
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
|
|
function SetUpMap() {
|
|
%CheckIsBootstrapping();
|
|
|
|
%SetCode($Map, MapConstructor);
|
|
%FunctionSetPrototype($Map, new $Object());
|
|
%AddNamedProperty($Map.prototype, "constructor", $Map, DONT_ENUM);
|
|
%AddNamedProperty(
|
|
$Map.prototype, symbolToStringTag, "Map", DONT_ENUM | READ_ONLY);
|
|
|
|
%FunctionSetLength(MapForEach, 1);
|
|
|
|
// Set up the non-enumerable functions on the Map prototype object.
|
|
InstallGetter($Map.prototype, "size", MapGetSizeJS);
|
|
InstallFunctions($Map.prototype, DONT_ENUM, $Array(
|
|
"get", MapGetJS,
|
|
"set", MapSetJS,
|
|
"has", MapHasJS,
|
|
"delete", MapDeleteJS,
|
|
"clear", MapClearJS,
|
|
"forEach", MapForEach
|
|
));
|
|
}
|
|
|
|
SetUpMap();
|