Index: src/runtime/runtime-internal.cc |
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
index 422d993b5f43125ba505252aaf0105424a8457cf..5b46b974a5e397758fa65072987b334b6be5a71a 100644 |
--- a/src/runtime/runtime-internal.cc |
+++ b/src/runtime/runtime-internal.cc |
@@ -368,22 +368,6 @@ RUNTIME_FUNCTION(Runtime_AllocateSeqTwoByteString) { |
} |
-RUNTIME_FUNCTION(Runtime_MessageGetStartPosition) { |
- SealHandleScope shs(isolate); |
- DCHECK(args.length() == 1); |
- CONVERT_ARG_CHECKED(JSMessageObject, message, 0); |
- return Smi::FromInt(message->start_position()); |
-} |
- |
- |
-RUNTIME_FUNCTION(Runtime_MessageGetScript) { |
- SealHandleScope shs(isolate); |
- DCHECK(args.length() == 1); |
- CONVERT_ARG_CHECKED(JSMessageObject, message, 0); |
- return message->script(); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_IS_VAR) { |
UNREACHABLE(); // implemented as macro in the parser |
return NULL; |