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

Unified Diff: pkg/analyzer/lib/src/generated/scanner.dart

Issue 475543002: New analyzer snapshot, add format/formatList. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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: pkg/analyzer/lib/src/generated/scanner.dart
diff --git a/pkg/analyzer/lib/src/generated/scanner.dart b/pkg/analyzer/lib/src/generated/scanner.dart
index 2d50d1112d16bcd68a8d8279daacf9634fd8c54e..3e0cc74f777662defdc7d4ae7b8db366628ac12c 100644
--- a/pkg/analyzer/lib/src/generated/scanner.dart
+++ b/pkg/analyzer/lib/src/generated/scanner.dart
@@ -1870,17 +1870,17 @@ class Scanner {
* scanner.
*/
class ScannerErrorCode extends Enum<ScannerErrorCode> implements ErrorCode {
- static const ScannerErrorCode ILLEGAL_CHARACTER = const ScannerErrorCode.con1('ILLEGAL_CHARACTER', 0, "Illegal character %x");
+ static const ScannerErrorCode ILLEGAL_CHARACTER = const ScannerErrorCode.con1("ILLEGAL_CHARACTER", 0, "Illegal character {0}");
- static const ScannerErrorCode MISSING_DIGIT = const ScannerErrorCode.con1('MISSING_DIGIT', 1, "Decimal digit expected");
+ static const ScannerErrorCode MISSING_DIGIT = const ScannerErrorCode.con1("MISSING_DIGIT", 1, "Decimal digit expected");
- static const ScannerErrorCode MISSING_HEX_DIGIT = const ScannerErrorCode.con1('MISSING_HEX_DIGIT', 2, "Hexidecimal digit expected");
+ static const ScannerErrorCode MISSING_HEX_DIGIT = const ScannerErrorCode.con1("MISSING_HEX_DIGIT", 2, "Hexidecimal digit expected");
- static const ScannerErrorCode MISSING_QUOTE = const ScannerErrorCode.con1('MISSING_QUOTE', 3, "Expected quote (' or \")");
+ static const ScannerErrorCode MISSING_QUOTE = const ScannerErrorCode.con1("MISSING_QUOTE", 3, "Expected quote (' or \")");
- static const ScannerErrorCode UNTERMINATED_MULTI_LINE_COMMENT = const ScannerErrorCode.con1('UNTERMINATED_MULTI_LINE_COMMENT', 4, "Unterminated multi-line comment");
+ static const ScannerErrorCode UNTERMINATED_MULTI_LINE_COMMENT = const ScannerErrorCode.con1("UNTERMINATED_MULTI_LINE_COMMENT", 4, "Unterminated multi-line comment");
- static const ScannerErrorCode UNTERMINATED_STRING_LITERAL = const ScannerErrorCode.con1('UNTERMINATED_STRING_LITERAL', 5, "Unterminated string literal");
+ static const ScannerErrorCode UNTERMINATED_STRING_LITERAL = const ScannerErrorCode.con1("UNTERMINATED_STRING_LITERAL", 5, "Unterminated string literal");
static const List<ScannerErrorCode> values = const [
ILLEGAL_CHARACTER,

Powered by Google App Engine
This is Rietveld 408576698