Commit ed7d7954 authored by adamk's avatar adamk Committed by Commit bot

[api] Remove deprecated and unused Set/Map::FromArray

R=jochen@chromium.org
CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_chromium_rel_ng

Review URL: https://codereview.chromium.org/1456923003

Cr-Commit-Position: refs/heads/master@{#32099}
parent 7d1d9786
...@@ -3042,15 +3042,6 @@ class V8_EXPORT Map : public Object { ...@@ -3042,15 +3042,6 @@ class V8_EXPORT Map : public Object {
*/ */
static Local<Map> New(Isolate* isolate); static Local<Map> New(Isolate* isolate);
/**
* Creates a new Map containing the elements of array, which must be formatted
* in the same manner as the array returned from AsArray().
* Guaranteed to be side-effect free if the array contains no holes.
*/
static V8_WARN_UNUSED_RESULT V8_DEPRECATED(
"Use mutation methods instead",
MaybeLocal<Map> FromArray(Local<Context> context, Local<Array> array));
V8_INLINE static Map* Cast(Value* obj); V8_INLINE static Map* Cast(Value* obj);
private: private:
...@@ -3083,14 +3074,6 @@ class V8_EXPORT Set : public Object { ...@@ -3083,14 +3074,6 @@ class V8_EXPORT Set : public Object {
*/ */
static Local<Set> New(Isolate* isolate); static Local<Set> New(Isolate* isolate);
/**
* Creates a new Set containing the items in array.
* Guaranteed to be side-effect free if the array contains no holes.
*/
static V8_WARN_UNUSED_RESULT V8_DEPRECATED(
"Use mutation methods instead",
MaybeLocal<Set> FromArray(Local<Context> context, Local<Array> array));
V8_INLINE static Set* Cast(Value* obj); V8_INLINE static Set* Cast(Value* obj);
private: private:
......
...@@ -6313,23 +6313,6 @@ Local<Array> Map::AsArray() const { ...@@ -6313,23 +6313,6 @@ Local<Array> Map::AsArray() const {
} }
MaybeLocal<Map> Map::FromArray(Local<Context> context, Local<Array> array) {
PREPARE_FOR_EXECUTION(context, "Map::FromArray", Map);
if (array->Length() % 2 != 0) {
return MaybeLocal<Map>();
}
i::Handle<i::Object> result;
i::Handle<i::Object> argv[] = {Utils::OpenHandle(*array)};
has_pending_exception =
!i::Execution::Call(isolate, isolate->map_from_array(),
isolate->factory()->undefined_value(),
arraysize(argv), argv)
.ToHandle(&result);
RETURN_ON_FAILED_EXECUTION(Map);
RETURN_ESCAPED(Local<Map>::Cast(Utils::ToLocal(result)));
}
Local<v8::Set> v8::Set::New(Isolate* isolate) { Local<v8::Set> v8::Set::New(Isolate* isolate) {
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate); i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
LOG_API(i_isolate, "Set::New"); LOG_API(i_isolate, "Set::New");
...@@ -6414,20 +6397,6 @@ Local<Array> Set::AsArray() const { ...@@ -6414,20 +6397,6 @@ Local<Array> Set::AsArray() const {
} }
MaybeLocal<Set> Set::FromArray(Local<Context> context, Local<Array> array) {
PREPARE_FOR_EXECUTION(context, "Set::FromArray", Set);
i::Handle<i::Object> result;
i::Handle<i::Object> argv[] = {Utils::OpenHandle(*array)};
has_pending_exception =
!i::Execution::Call(isolate, isolate->set_from_array(),
isolate->factory()->undefined_value(),
arraysize(argv), argv)
.ToHandle(&result);
RETURN_ON_FAILED_EXECUTION(Set);
RETURN_ESCAPED(Local<Set>::Cast(Utils::ToLocal(result)));
}
bool Value::IsPromise() const { bool Value::IsPromise() const {
auto self = Utils::OpenHandle(this); auto self = Utils::OpenHandle(this);
return i::Object::IsPromise(self); return i::Object::IsPromise(self);
......
...@@ -118,7 +118,6 @@ enum BindingFlags { ...@@ -118,7 +118,6 @@ enum BindingFlags {
V(JSON_SERIALIZE_ADAPTER_INDEX, JSFunction, json_serialize_adapter) \ V(JSON_SERIALIZE_ADAPTER_INDEX, JSFunction, json_serialize_adapter) \
V(MAKE_ERROR_FUNCTION_INDEX, JSFunction, make_error_function) \ V(MAKE_ERROR_FUNCTION_INDEX, JSFunction, make_error_function) \
V(MAP_DELETE_METHOD_INDEX, JSFunction, map_delete) \ V(MAP_DELETE_METHOD_INDEX, JSFunction, map_delete) \
V(MAP_FROM_ARRAY_INDEX, JSFunction, map_from_array) \
V(MAP_GET_METHOD_INDEX, JSFunction, map_get) \ V(MAP_GET_METHOD_INDEX, JSFunction, map_get) \
V(MAP_HAS_METHOD_INDEX, JSFunction, map_has) \ V(MAP_HAS_METHOD_INDEX, JSFunction, map_has) \
V(MAP_SET_METHOD_INDEX, JSFunction, map_set) \ V(MAP_SET_METHOD_INDEX, JSFunction, map_set) \
...@@ -152,7 +151,6 @@ enum BindingFlags { ...@@ -152,7 +151,6 @@ enum BindingFlags {
V(REFERENCE_ERROR_FUNCTION_INDEX, JSFunction, reference_error_function) \ V(REFERENCE_ERROR_FUNCTION_INDEX, JSFunction, reference_error_function) \
V(SET_ADD_METHOD_INDEX, JSFunction, set_add) \ V(SET_ADD_METHOD_INDEX, JSFunction, set_add) \
V(SET_DELETE_METHOD_INDEX, JSFunction, set_delete) \ V(SET_DELETE_METHOD_INDEX, JSFunction, set_delete) \
V(SET_FROM_ARRAY_INDEX, JSFunction, set_from_array) \
V(SET_HAS_METHOD_INDEX, JSFunction, set_has) \ V(SET_HAS_METHOD_INDEX, JSFunction, set_has) \
V(STACK_OVERFLOW_BOILERPLATE_INDEX, JSObject, stack_overflow_boilerplate) \ V(STACK_OVERFLOW_BOILERPLATE_INDEX, JSObject, stack_overflow_boilerplate) \
V(SYNTAX_ERROR_FUNCTION_INDEX, JSFunction, syntax_error_function) \ V(SYNTAX_ERROR_FUNCTION_INDEX, JSFunction, syntax_error_function) \
......
...@@ -461,26 +461,6 @@ utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [ ...@@ -461,26 +461,6 @@ utils.InstallFunctions(GlobalMap.prototype, DONT_ENUM, [
"forEach", MapForEach "forEach", MapForEach
]); ]);
function MapFromArray(array) {
var map = new GlobalMap;
var length = array.length;
for (var i = 0; i < length; i += 2) {
var key = array[i];
var value = array[i + 1];
%_Call(MapSet, map, key, value);
}
return map;
};
function SetFromArray(array) {
var set = new GlobalSet;
var length = array.length;
for (var i = 0; i < length; ++i) {
%_Call(SetAdd, set, array[i]);
}
return set;
};
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
// Exports // Exports
...@@ -492,8 +472,6 @@ function SetFromArray(array) { ...@@ -492,8 +472,6 @@ function SetFromArray(array) {
"set_add", SetAdd, "set_add", SetAdd,
"set_has", SetHas, "set_has", SetHas,
"set_delete", SetDelete, "set_delete", SetDelete,
"map_from_array", MapFromArray,
"set_from_array",SetFromArray,
]); ]);
utils.Export(function(to) { utils.Export(function(to) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment