Index: src/runtime/runtime-internal.cc |
diff --git a/src/runtime/runtime-internal.cc b/src/runtime/runtime-internal.cc |
index 2ed57566328c95777707cda344d7ef60715bb884..be96e5e4564c6cc13321e8ccf9003b8dc0c4ee4a 100644 |
--- a/src/runtime/runtime-internal.cc |
+++ b/src/runtime/runtime-internal.cc |
@@ -384,19 +384,6 @@ RUNTIME_FUNCTION(Runtime_MessageGetScript) { |
} |
-RUNTIME_FUNCTION(Runtime_FormatMessageString) { |
- HandleScope scope(isolate); |
- DCHECK(args.length() == 4); |
- CONVERT_INT32_ARG_CHECKED(template_index, 0); |
- CONVERT_ARG_HANDLE_CHECKED(String, arg0, 1); |
- CONVERT_ARG_HANDLE_CHECKED(String, arg1, 2); |
- CONVERT_ARG_HANDLE_CHECKED(String, arg2, 3); |
- isolate->native_context()->IncrementErrorsThrown(); |
- RETURN_RESULT_OR_FAILURE(isolate, MessageTemplate::FormatMessage( |
- template_index, arg0, arg1, arg2)); |
-} |
- |
- |
RUNTIME_FUNCTION(Runtime_IS_VAR) { |
UNREACHABLE(); // implemented as macro in the parser |
return NULL; |