| Index: src/runtime/runtime-debug.cc
|
| diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc
|
| index 3376e8ceeed5d0fedda3f2188eb2c1598c6eec62..c22017e9683ab8dd4be1e6ac78bd1246d57bf276 100644
|
| --- a/src/runtime/runtime-debug.cc
|
| +++ b/src/runtime/runtime-debug.cc
|
| @@ -80,9 +80,8 @@ static Handle<Object> DebugGetProperty(LookupIterator* it,
|
| if (!accessors->IsAccessorInfo()) {
|
| return it->isolate()->factory()->undefined_value();
|
| }
|
| - MaybeHandle<Object> maybe_result = JSObject::GetPropertyWithAccessor(
|
| - it->GetReceiver(), it->name(), it->GetHolder<JSObject>(),
|
| - accessors);
|
| + MaybeHandle<Object> maybe_result =
|
| + JSObject::GetPropertyWithAccessor(it);
|
| Handle<Object> result;
|
| if (!maybe_result.ToHandle(&result)) {
|
| result = handle(it->isolate()->pending_exception(), it->isolate());
|
|
|