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

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

Issue 9293006: Refactoring of string literals. Implement static string addition. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 | « no previous file | frog/leg/ssa/builder.dart » ('j') | frog/leg/tree/nodes.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/leg/scanner/listener.dart
diff --git a/frog/leg/scanner/listener.dart b/frog/leg/scanner/listener.dart
index 5e23c72206f66e4322984903e4b5e351124e103f..a24bb5bc40479c1a0ac0330e086a109a34c33af5 100644
--- a/frog/leg/scanner/listener.dart
+++ b/frog/leg/scanner/listener.dart
@@ -724,7 +724,7 @@ class ElementListener extends Listener {
bool isLast = true;
for (int i = 0; i < count; i++) {
LiteralString string = popNode();
- QuotedString validation =
+ DartString validation =
stringValidator.validateInterpolationPart(string.token, quoting,
isFirst: false,
isLast: isLast);
@@ -737,7 +737,7 @@ class ElementListener extends Listener {
}
LiteralString string = popNode();
- QuotedString validation =
+ DartString validation =
stringValidator.validateInterpolationPart(string.token, quoting,
isFirst: true,
isLast: isLast);
« no previous file with comments | « no previous file | frog/leg/ssa/builder.dart » ('j') | frog/leg/tree/nodes.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698