| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 927386289ac392254281077665c980768294f946..5bfb2cc015be77e8c76c2949c948e9375756698b 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -11037,9 +11037,8 @@ RUNTIME_FUNCTION(Runtime_DebugNamedInterceptorPropertyValue) {
|
| CONVERT_ARG_HANDLE_CHECKED(Name, name, 1);
|
|
|
| Handle<Object> result;
|
| - LookupIterator it(obj, name, obj);
|
| ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| - isolate, result, JSObject::GetProperty(&it));
|
| + isolate, result, JSObject::GetProperty(obj, name));
|
| return *result;
|
| }
|
|
|
|
|