Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java |
| =================================================================== |
| --- compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java (revision 9365) |
| +++ compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java (working copy) |
| @@ -107,6 +107,8 @@ |
| MISSING_FUNCTION_NAME(ErrorSeverity.WARNING, "a function name is required for a declaration"), |
| NAMED_PARAMETER_NOT_ALLOWED("Named parameter is not allowed for operator or setter method"), |
| NO_SPACE_AFTER_PLUS("Cannot have space between plus and numeric literal"), |
| + // TODO(zundel): error message needs JUnit test |
|
Brian Wilkerson
2012/07/03 19:07:53
Eric didn't add this TODO, and I'm not sure I want
devoncarew
2012/07/03 20:45:14
Done - removed the TODO.
|
| + NO_SOUP_FOR_YOU("Too many errors"), |
|
Brian Wilkerson
2012/07/03 19:07:53
Maybe we could call it something less humorous, li
|
| NO_UNARY_PLUS_OPERATOR("No unary plus operator in Dart"), |
| // TODO(zundel): error message needs JUnit test |
| NON_FINAL_STATIC_MEMBER_IN_INTERFACE("Non-final static members are not allowed in interfaces"), |