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

Unified Diff: src/builtins/builtins-console.cc

Issue 2785293002: [inspector] move console to builtins (Closed)
Patch Set: removed unused variable Created 3 years, 8 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/bootstrapper.cc ('k') | src/builtins/builtins-definitions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins/builtins-console.cc
diff --git a/src/builtins/builtins-console.cc b/src/builtins/builtins-console.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a021c8a75b2e4d90dfee99da7daf0a3bde4fc7dd
--- /dev/null
+++ b/src/builtins/builtins-console.cc
@@ -0,0 +1,57 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "src/builtins/builtins-utils.h"
+#include "src/builtins/builtins.h"
+
+#include "src/debug/interface-types.h"
+#include "src/objects-inl.h"
+
+namespace v8 {
+namespace internal {
+
+// -----------------------------------------------------------------------------
+// Console
+
+#define CONSOLE_METHOD_LIST(V) \
+ V(Debug) \
+ V(Error) \
+ V(Info) \
+ V(Log) \
+ V(Warn) \
+ V(Dir) \
+ V(DirXml) \
+ V(Table) \
+ V(Trace) \
+ V(Group) \
+ V(GroupCollapsed) \
+ V(GroupEnd) \
+ V(Clear) \
+ V(Count) \
+ V(Assert) \
+ V(MarkTimeline) \
+ V(Profile) \
+ V(ProfileEnd) \
+ V(Timeline) \
+ V(TimelineEnd) \
+ V(Time) \
+ V(TimeEnd) \
+ V(TimeStamp)
+
+#define CONSOLE_BUILTIN_IMPLEMENTATION(name) \
+ BUILTIN(Console##name) { \
+ HandleScope scope(isolate); \
+ if (isolate->console_delegate()) { \
+ debug::ConsoleCallArguments wrapper(args); \
+ isolate->console_delegate()->name(wrapper); \
+ } \
+ return isolate->heap()->undefined_value(); \
+ }
+CONSOLE_METHOD_LIST(CONSOLE_BUILTIN_IMPLEMENTATION)
+#undef CONSOLE_BUILTIN_IMPLEMENTATION
+
+#undef CONSOLE_METHOD_LIST
+
+} // namespace internal
+} // namespace v8
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698