Chromium Code Reviews

Unified Diff: src/prettyprinter.cc

Issue 118234: Clean up the AST pretty printer by adding some missing newlines and... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/prettyprinter.cc
===================================================================
--- src/prettyprinter.cc (revision 2103)
+++ src/prettyprinter.cc (working copy)
@@ -693,10 +693,10 @@
Print(" ");
}
PrintLabels(labels);
- Print("\n");
} else if (info != NULL) {
PrintIndented(info);
}
+ Print("\n");
}
@@ -918,9 +918,8 @@
void AstPrinter::VisitRegExpLiteral(RegExpLiteral* node) {
IndentedScope indent("REGEXP LITERAL");
- PrintLiteral(node->pattern(), false);
- Print(",");
- PrintLiteral(node->flags(), false);
+ PrintLiteralIndented("PATTERN", node->pattern(), false);
+ PrintLiteralIndented("FLAGS", node->flags(), false);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine