| Index: src/runtime/runtime-internal.cc
|
| diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc
|
| index be96e5e4564c6cc13321e8ccf9003b8dc0c4ee4a..41b551e26999bb99f95f755e402a403c00d082db 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;
|
|
|