| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index c93dbf79cf71c37ac28f6ec3b2df6d73dcc03af3..f424b166fb1f7c70e4c696a1e1662c077bbaf471 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -10888,7 +10888,10 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_DebugNamedInterceptorPropertyValue) {
|
| CONVERT_ARG_HANDLE_CHECKED(Name, name, 1);
|
|
|
| PropertyAttributes attributes;
|
| - return obj->GetPropertyWithInterceptor(*obj, *name, &attributes);
|
| + Handle<Object> result =
|
| + JSObject::GetPropertyWithInterceptor(obj, obj, name, &attributes);
|
| + RETURN_IF_EMPTY_HANDLE(isolate, result);
|
| + return *result;
|
| }
|
|
|
|
|
|
|