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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/scanner/scanner.dart

Issue 97043002: Fix bad reference in string interpolation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | dart/tests/co19/co19-dart2dart.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/sdk/lib/_internal/compiler/implementation/scanner/scanner.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/scanner/scanner.dart b/dart/sdk/lib/_internal/compiler/implementation/scanner/scanner.dart
index 0ad4dd591e2ff6b37fec26ec097934081d7615c6..c7e1ae74bfc80dd66e18131e89f74ad31601bcad 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/scanner/scanner.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/scanner/scanner.dart
@@ -200,7 +200,7 @@ abstract class AbstractScanner implements Scanner {
if (atEndOfFile()) {
appendEofToken();
} else {
- error('Unexpected $EOF byte in input.');
+ error('Unexpected ${$EOF} byte in input.');
}
}
« no previous file with comments | « no previous file | dart/tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698