Index: src/compiler/access-info.cc |
diff --git a/src/compiler/access-info.cc b/src/compiler/access-info.cc |
index e1b40a1674af2c99fc1d4de8538024a2455e4d74..afa187fcf0ef1febf8b4c204b8f8b875110329ee 100644 |
--- a/src/compiler/access-info.cc |
+++ b/src/compiler/access-info.cc |
@@ -321,7 +321,7 @@ |
.ToHandle(&constructor)) { |
map = handle(constructor->initial_map(), isolate()); |
DCHECK(map->prototype()->IsJSObject()); |
- } else if (map->prototype()->IsNull()) { |
+ } else if (map->prototype()->IsNull(isolate())) { |
// Store to property not found on the receiver or any prototype, we need |
// to transition to a new data property. |
// Implemented according to ES6 section 9.1.9 [[Set]] (P, V, Receiver) |