| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 78efc8dbe42727523fc04467884c86fe3658f38e..2d7336519c529071cc234771092828d7c622d642 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -4607,7 +4607,8 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_HasLocalProperty) {
|
| // Fast case: either the key is a real named property or it is not
|
| // an array index and there are no interceptors or hidden
|
| // prototypes.
|
| - if (object->HasRealNamedProperty(key)) return isolate->heap()->true_value();
|
| + if (object->HasRealNamedProperty(isolate, key))
|
| + return isolate->heap()->true_value();
|
| Map* map = object->map();
|
| if (!key_is_array_index &&
|
| !map->has_named_interceptor() &&
|
|
|