| Index: src/runtime/runtime-debug.cc
|
| diff --git a/src/runtime/runtime-debug.cc b/src/runtime/runtime-debug.cc
|
| index 660fc7ffa2b1055010db4f37751b3a297c8b2e26..18842022fd8d480a0cbb8a495414d574af731fff 100644
|
| --- a/src/runtime/runtime-debug.cc
|
| +++ b/src/runtime/runtime-debug.cc
|
| @@ -422,9 +422,8 @@ RUNTIME_FUNCTION(Runtime_DebugIndexedInterceptorElementValue) {
|
| RUNTIME_ASSERT(obj->HasIndexedInterceptor());
|
| CONVERT_NUMBER_CHECKED(uint32_t, index, Uint32, args[1]);
|
| Handle<Object> result;
|
| - ASSIGN_RETURN_FAILURE_ON_EXCEPTION(
|
| - isolate, result,
|
| - JSObject::GetElementWithInterceptor(obj, obj, index, true));
|
| + ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result,
|
| + Object::GetElement(isolate, obj, index));
|
| return *result;
|
| }
|
|
|
|
|