Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 7afa3a6aa6e6122bc1932a2a320d3077684d18d9..c1c3f8873e1ff99abca99c61a7944711f4cebb7a 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -9408,22 +9408,6 @@ RUNTIME_FUNCTION(Runtime_StoreLookupSlot) { |
} |
-RUNTIME_FUNCTION(Runtime_StoreContextRelative) { |
- SealHandleScope shs(isolate); |
- ASSERT(args.length() == 4); |
- CONVERT_ARG_CHECKED(Context, context, 0); |
- CONVERT_SMI_ARG_CHECKED(depth, 1); |
- CONVERT_SMI_ARG_CHECKED(index, 2); |
- CONVERT_ARG_CHECKED(Object, value, 3); |
- while (depth-- > 0) { |
- context = context->previous(); |
- ASSERT(context->IsContext()); |
- } |
- context->set(index, value); |
- return isolate->heap()->undefined_value(); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_Throw) { |
HandleScope scope(isolate); |
ASSERT(args.length() == 1); |