| Index: src/handles.cc
|
| diff --git a/src/handles.cc b/src/handles.cc
|
| index a316cc0710539cf8827a6c09e4c957c07654341f..536994dd43207e57c927fe93b2e225458dedc31f 100644
|
| --- a/src/handles.cc
|
| +++ b/src/handles.cc
|
| @@ -433,7 +433,7 @@ MaybeHandle<FixedArray> GetKeysInFixedArrayFor(Handle<JSReceiver> object,
|
| // Only collect keys if access is permitted.
|
| for (Handle<Object> p = object;
|
| *p != isolate->heap()->null_value();
|
| - p = Handle<Object>(p->GetPrototype(isolate), isolate)) {
|
| + p = Object::GetPrototype(isolate, p)) {
|
| if (p->IsJSProxy()) {
|
| Handle<JSProxy> proxy(JSProxy::cast(*p), isolate);
|
| Handle<Object> args[] = { proxy };
|
|
|