| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index e07876b84bc375b27c9b49a92f94cb1128f33b94..38bb74956f31030c2fa30b639f0eca1a8181a29c 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -14799,19 +14799,6 @@ RUNTIME_FUNCTION(Runtime_ListNatives) {
|
| #endif
|
|
|
|
|
| -RUNTIME_FUNCTION(RuntimeHidden_Log) {
|
| - HandleScope handle_scope(isolate);
|
| - ASSERT(args.length() == 2);
|
| - CONVERT_ARG_HANDLE_CHECKED(String, format, 0);
|
| - CONVERT_ARG_HANDLE_CHECKED(JSArray, elms, 1);
|
| -
|
| - SmartArrayPointer<char> format_chars = format->ToCString();
|
| - isolate->logger()->LogRuntime(
|
| - Vector<const char>(format_chars.get(), format->length()), elms);
|
| - return isolate->heap()->undefined_value();
|
| -}
|
| -
|
| -
|
| RUNTIME_FUNCTION(Runtime_IS_VAR) {
|
| UNREACHABLE(); // implemented as macro in the parser
|
| return NULL;
|
|
|