Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java |
| =================================================================== |
| --- compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java (revision 8125) |
| +++ compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java (working copy) |
| @@ -38,6 +38,7 @@ |
| EXPECTED_CLASS_DECLARATION_LBRACE("Expected '{' in class or interface declaration"), |
| EXPECTED_COMMA_OR_RIGHT_BRACE("Expected ',' or '}'"), |
| EXPECTED_COMMA_OR_RIGHT_PAREN("Expected ',' or ')', but got '%s'"), |
| + EXPECTED_EXPRESSION_AFTER_COMMA("Expected expression after comma"), |
|
scheglov
2012/05/30 21:00:21
These lines should be sorted.
"EXP" should be afte
Brian Wilkerson
2012/05/30 21:44:58
Done
|
| EXPECTED_EOS("Unexpected token '%s' (expected end of file)"), |
| EXPECTED_EXTENDS("Expected 'extends'"), |
| EXPECTED_IDENTIFIER("Expected identifier"), |