| Index: src/runtime/runtime-array.cc
|
| diff --git a/src/runtime/runtime-array.cc b/src/runtime/runtime-array.cc
|
| index 2d08c3e91d7d217ac5cd35741c9ca15cc80e03c0..ef177fec4c193e0fa9e83f63d680353924d68e7a 100644
|
| --- a/src/runtime/runtime-array.cc
|
| +++ b/src/runtime/runtime-array.cc
|
| @@ -427,21 +427,6 @@ RUNTIME_FUNCTION(Runtime_IsArray) {
|
| return isolate->heap()->ToBoolean(obj->IsJSArray());
|
| }
|
|
|
| -RUNTIME_FUNCTION(Runtime_HasCachedArrayIndex) {
|
| - SealHandleScope shs(isolate);
|
| - DCHECK(args.length() == 1);
|
| - return isolate->heap()->false_value();
|
| -}
|
| -
|
| -
|
| -RUNTIME_FUNCTION(Runtime_GetCachedArrayIndex) {
|
| - // This can never be reached, because Runtime_HasCachedArrayIndex always
|
| - // returns false.
|
| - UNIMPLEMENTED();
|
| - return nullptr;
|
| -}
|
| -
|
| -
|
| RUNTIME_FUNCTION(Runtime_ArraySpeciesConstructor) {
|
| HandleScope scope(isolate);
|
| DCHECK(args.length() == 1);
|
|
|