Chromium Code Reviews

Unified Diff: src/code-factory.h

Issue 2828933002: [console] fast console.assert(true) (Closed)
Patch Set: reverted protocol-test.js changes Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/code-factory.h
diff --git a/src/code-factory.h b/src/code-factory.h
index 669f3798aaed0849b81cd3140ecc949d8bd5899a..a30e8c1b036812830fe6597e7c61af5f281d95e1 100644
--- a/src/code-factory.h
+++ b/src/code-factory.h
@@ -166,6 +166,7 @@ class V8_EXPORT_PRIVATE CodeFactory final {
TailCallMode tail_call_mode = TailCallMode::kDisallow);
static Callable CallForwardVarargs(Isolate* isolate);
static Callable CallFunctionForwardVarargs(Isolate* isolate);
+ static Callable ConsoleAssert(Isolate* isolate);
Igor Sheludko 2017/04/20 10:18:42 It will not be necessary if you use CSA::TailCallB
static Callable Construct(Isolate* isolate);
static Callable ConstructWithSpread(Isolate* isolate);
static Callable ConstructFunction(Isolate* isolate);

Powered by Google App Engine