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

Unified Diff: lib/compiler/implementation/tree/unparser.dart

Issue 10824113: Fix interpolation unparse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | « lib/compiler/implementation/scanner/listener.dart ('k') | tests/compiler/dart2js/unparser_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/tree/unparser.dart
diff --git a/lib/compiler/implementation/tree/unparser.dart b/lib/compiler/implementation/tree/unparser.dart
index a78bdd4350e25ca5e83ceef0c246549a26b9d941..9c7a23e6b727aa87a4e0287ae00ff88a23580d25 100644
--- a/lib/compiler/implementation/tree/unparser.dart
+++ b/lib/compiler/implementation/tree/unparser.dart
@@ -194,7 +194,7 @@ class Unparser implements Visitor {
*/
unparseNodeListFrom(NodeList node, Link<Node> from) {
if (from.isEmpty()) return;
- String delimiter = (node.delimiter === null) ? " " : "${node.delimiter} ";
+ String delimiter = (node.delimiter === null) ? " " : "${node.delimiter}";
visit(from.head);
for (Link link = from.tail; !link.isEmpty(); link = link.tail) {
sb.add(delimiter);
« no previous file with comments | « lib/compiler/implementation/scanner/listener.dart ('k') | tests/compiler/dart2js/unparser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698