Index: src/runtime/runtime-object.cc |
diff --git a/src/runtime/runtime-object.cc b/src/runtime/runtime-object.cc |
index f8c2916e8ad2c0708bbafcfe4d8735f274042531..18078fc78f1dc14b9b8a435cbf03c989d18d8589 100644 |
--- a/src/runtime/runtime-object.cc |
+++ b/src/runtime/runtime-object.cc |
@@ -1368,16 +1368,6 @@ RUNTIME_FUNCTION(Runtime_GlobalProxy) { |
} |
-RUNTIME_FUNCTION(Runtime_IsAttachedGlobal) { |
- SealHandleScope shs(isolate); |
- DCHECK(args.length() == 1); |
- CONVERT_ARG_CHECKED(Object, global, 0); |
- if (!global->IsJSGlobalObject()) return isolate->heap()->false_value(); |
- return isolate->heap()->ToBoolean( |
- !JSGlobalObject::cast(global)->IsDetached()); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_LookupAccessor) { |
HandleScope scope(isolate); |
DCHECK(args.length() == 3); |