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

Unified Diff: src/code-factory.cc

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/code-factory.cc
diff --git a/src/code-factory.cc b/src/code-factory.cc
index 71fbb1dbab93363ab2650bb8c53f3a5db12cbddb..158c40af4beb5f6dfb132508d661044c6a84a5e8 100644
--- a/src/code-factory.cc
+++ b/src/code-factory.cc
@@ -445,6 +445,11 @@ Callable CodeFactory::CallFunctionForwardVarargs(Isolate* isolate) {
CallForwardVarargsDescriptor(isolate));
}
+Callable CodeFactory::ConsoleAssert(Isolate* isolate) {
Igor Sheludko 2017/04/20 10:18:42 Same here.
+ return Callable(isolate->builtins()->ConsoleAssert(),
+ ConstructTrampolineDescriptor(isolate));
+}
+
// static
Callable CodeFactory::Construct(Isolate* isolate) {
return Callable(isolate->builtins()->Construct(),

Powered by Google App Engine
This is Rietveld 408576698