Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1276)

Unified Diff: src/runtime/runtime-internal.cc

Issue 2206573002: Move NoSideEffectToString to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/runtime.h ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « src/runtime/runtime.h ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698