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

Unified Diff: lib/compiler/implementation/unparse_validator.dart

Issue 10456080: Remove printDebugInfo from Unparser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: another PrettyPrinter interface Created 8 years, 6 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: lib/compiler/implementation/unparse_validator.dart
diff --git a/lib/compiler/implementation/unparse_validator.dart b/lib/compiler/implementation/unparse_validator.dart
index bba30e83a1b3903515cbf8ced6379a0faf27430b..2a54f568e3ac9240b995233c33860e090b3b662e 100644
--- a/lib/compiler/implementation/unparse_validator.dart
+++ b/lib/compiler/implementation/unparse_validator.dart
@@ -38,7 +38,7 @@ class UnparseValidator extends CompilerTask {
PartialFunctionElement originalFunction = element;
FunctionExpression originalNode = originalFunction.parseNode(compiler);
- String unparsed = originalNode.unparse(false);
+ String unparsed = originalNode.unparse();
Token newTokens = new StringScanner(unparsed).tokenize();

Powered by Google App Engine
This is Rietveld 408576698