| 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);
|
| }
|
|
|
|
|