| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 19d9a3f0be9936a97b6c1370a50a17efa65374dd..9089fb26a80966a2b03b79d967ba401c165e7b09 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -10177,7 +10177,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_DebugIndexedInterceptorElementValue) {
|
| RUNTIME_ASSERT(obj->HasIndexedInterceptor());
|
| CONVERT_NUMBER_CHECKED(uint32_t, index, Uint32, args[1]);
|
|
|
| - return obj->GetElementWithInterceptor(*obj, index);
|
| + return obj->GetElementWithInterceptor(*obj, index, isolate);
|
| }
|
|
|
|
|
|
|