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

Unified Diff: frog/leg/scanner/parser.dart

Issue 9642001: Make string juxtaposition combine properly with string interpolations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 9 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: frog/leg/scanner/parser.dart
diff --git a/frog/leg/scanner/parser.dart b/frog/leg/scanner/parser.dart
index 30e3a3eb306805588273b49f7235a9341927ef5c..b6554d5c3654b68c7b1cdde90d0030be1e4a7dd2 100644
--- a/frog/leg/scanner/parser.dart
+++ b/frog/leg/scanner/parser.dart
@@ -1222,7 +1222,7 @@ class Parser {
count++;
}
if (count > 1) {
- listener.handleLiteralStringJuxtaposition(count);
+ listener.handleStringJuxtaposition(count);
}
return token;
}

Powered by Google App Engine
This is Rietveld 408576698