| Index: src/runtime/runtime-forin.cc
|
| diff --git a/src/runtime/runtime-forin.cc b/src/runtime/runtime-forin.cc
|
| index 421b395e5db7e52af787e24e1151f65a84608285..e57016a6d39c847d2ea51bfc9630fc772cdd9f32 100644
|
| --- a/src/runtime/runtime-forin.cc
|
| +++ b/src/runtime/runtime-forin.cc
|
| @@ -65,7 +65,7 @@ MaybeHandle<Object> HasEnumerableProperty(Isolate* isolate,
|
| Handle<Object> prototype;
|
| ASSIGN_RETURN_ON_EXCEPTION(isolate, prototype,
|
| JSProxy::GetPrototype(proxy), Object);
|
| - if (prototype->IsNull()) break;
|
| + if (prototype->IsNull(isolate)) break;
|
| // We already have a stack-check in JSProxy::GetPrototype.
|
| return HasEnumerableProperty(
|
| isolate, Handle<JSReceiver>::cast(prototype), key);
|
|
|