Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 9e3592b1c7aa835588230fc7c5dce45f2e6a9516..4d8163813cd32ef9ec5d648865a7ff12f3ef880d 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -10878,7 +10878,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; |
} |