Index: src/prototype.h |
diff --git a/src/prototype.h b/src/prototype.h |
index bcfb2bf9d3118f86d9832ad30185918292f39238..032d9b6b347614422c5e42af284c5be8d650e744 100644 |
--- a/src/prototype.h |
+++ b/src/prototype.h |
@@ -57,7 +57,7 @@ |
: object_(receiver_map->prototype()), |
isolate_(receiver_map->GetIsolate()), |
where_to_end_(END_AT_NULL), |
- is_at_end_(object_->IsNull()), |
+ is_at_end_(object_->IsNull(isolate_)), |
seen_proxies_(0) {} |
explicit PrototypeIterator(Handle<Map> receiver_map) |
@@ -65,7 +65,7 @@ |
handle_(handle(receiver_map->prototype(), receiver_map->GetIsolate())), |
isolate_(receiver_map->GetIsolate()), |
where_to_end_(END_AT_NULL), |
- is_at_end_(handle_->IsNull()), |
+ is_at_end_(handle_->IsNull(isolate_)), |
seen_proxies_(0) {} |
~PrototypeIterator() {} |
@@ -114,7 +114,7 @@ |
Object* prototype = map->prototype(); |
is_at_end_ = where_to_end_ == END_AT_NON_HIDDEN |
? !map->has_hidden_prototype() |
- : prototype->IsNull(); |
+ : prototype->IsNull(isolate_); |
if (handle_.is_null()) { |
object_ = prototype; |
@@ -153,7 +153,8 @@ |
MaybeHandle<Object> proto = |
JSProxy::GetPrototype(Handle<JSProxy>::cast(handle_)); |
if (!proto.ToHandle(&handle_)) return false; |
- is_at_end_ = where_to_end_ == END_AT_NON_HIDDEN || handle_->IsNull(); |
+ is_at_end_ = |
+ where_to_end_ == END_AT_NON_HIDDEN || handle_->IsNull(isolate_); |
return true; |
} |