Index: src/runtime/runtime-debug.cc |
diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc |
index 0d2f65d571e2e7101e4f4d98494e8ccae88f8bce..660fc7ffa2b1055010db4f37751b3a297c8b2e26 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()); |