| Index: src/builtins.cc
|
| diff --git a/src/builtins.cc b/src/builtins.cc
|
| index db84406fdd0ff88cf11a8a608a8e053aae21bd17..122999607b6d649e5a9034b294d1ff09824d7aa8 100644
|
| --- a/src/builtins.cc
|
| +++ b/src/builtins.cc
|
| @@ -1628,7 +1628,7 @@
|
| Handle<FixedArray> keys;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| isolate, keys,
|
| - KeyAccumulator::GetKeys(from, OWN_ONLY, ALL_PROPERTIES, KEEP_NUMBERS));
|
| + JSReceiver::GetKeys(from, OWN_ONLY, ALL_PROPERTIES, KEEP_NUMBERS));
|
| // 4c. Repeat for each element nextKey of keys in List order,
|
| for (int j = 0; j < keys->length(); ++j) {
|
| Handle<Object> next_key(keys->get(j), isolate);
|
| @@ -1901,7 +1901,7 @@
|
| Handle<FixedArray> keys;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| isolate, keys,
|
| - KeyAccumulator::GetKeys(receiver, OWN_ONLY, filter, CONVERT_TO_STRING));
|
| + JSReceiver::GetKeys(receiver, OWN_ONLY, filter, CONVERT_TO_STRING));
|
| return *isolate->factory()->NewJSArrayWithElements(keys);
|
| }
|
|
|
| @@ -1997,8 +1997,8 @@
|
| } else {
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| isolate, keys,
|
| - KeyAccumulator::GetKeys(receiver, OWN_ONLY, ENUMERABLE_STRINGS,
|
| - CONVERT_TO_STRING));
|
| + JSReceiver::GetKeys(receiver, OWN_ONLY, ENUMERABLE_STRINGS,
|
| + CONVERT_TO_STRING));
|
| }
|
| return *isolate->factory()->NewJSArrayWithElements(keys, FAST_ELEMENTS);
|
| }
|
| @@ -2040,8 +2040,8 @@
|
|
|
| Handle<FixedArray> keys;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| - isolate, keys, KeyAccumulator::GetKeys(receiver, OWN_ONLY, ALL_PROPERTIES,
|
| - CONVERT_TO_STRING));
|
| + isolate, keys, JSReceiver::GetKeys(receiver, OWN_ONLY, ALL_PROPERTIES,
|
| + CONVERT_TO_STRING));
|
|
|
| Handle<JSObject> descriptors =
|
| isolate->factory()->NewJSObject(isolate->object_function());
|
| @@ -2708,8 +2708,8 @@
|
| Handle<FixedArray> keys;
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| isolate, keys,
|
| - KeyAccumulator::GetKeys(Handle<JSReceiver>::cast(target), OWN_ONLY,
|
| - ALL_PROPERTIES, CONVERT_TO_STRING));
|
| + JSReceiver::GetKeys(Handle<JSReceiver>::cast(target), OWN_ONLY,
|
| + ALL_PROPERTIES, CONVERT_TO_STRING));
|
| return *isolate->factory()->NewJSArrayWithElements(keys);
|
| }
|
|
|
|
|