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

Unified Diff: src/ast/ast.cc

Issue 1695393003: [es6] Implement for-of iterator finalization (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Disable iterator test for Ignition Created 4 years, 10 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/ast/ast.h ('k') | src/ast/ast-value-factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/ast.cc
diff --git a/src/ast/ast.cc b/src/ast/ast.cc
index 3132b9fc400ee98430f479f8fabc25c511be9a7a..6eddb55c2428e56ac20e461f5ce9d73b40523a23 100644
--- a/src/ast/ast.cc
+++ b/src/ast/ast.cc
@@ -36,10 +36,10 @@ AST_NODE_LIST(DECL_ACCEPT)
#ifdef DEBUG
-void AstNode::PrintAst() { PrintAst(Isolate::Current()); }
+void AstNode::Print() { Print(Isolate::Current()); }
-void AstNode::PrintAst(Isolate* isolate) {
+void AstNode::Print(Isolate* isolate) {
AstPrinter::PrintOut(isolate, this);
}
« no previous file with comments | « src/ast/ast.h ('k') | src/ast/ast-value-factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698