| Index: compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java
|
| diff --git a/compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java b/compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java
|
| index a461fc3cfd86ad8d5b483ea5ae4f692d6beb7c46..c0357684cf306459ad65a49369327731290c99b7 100644
|
| --- a/compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java
|
| +++ b/compiler/java/com/google/dart/compiler/parser/ParserErrorCode.java
|
| @@ -34,6 +34,7 @@ public enum ParserErrorCode implements ErrorCode {
|
| DEPRECATED_CATCH("This style of catch clause has been deprecated. Please use the 'on' <type> " +
|
| "'catch' '(' <identifier> (',' <identifier>)? ')' form."),
|
| DEPRECATED_ABSTRACT_METHOD(ErrorSeverity.WARNING, "Modifier 'abstract' is deprecated for methods without body. Remove it."),
|
| + DEPRECATED_FUNCTION_LITERAL("Deprecated function literal syntax, remove return type and name"),
|
| DEPRECATED_GETTER("The presence of parentheses after the name of the getter "
|
| + "has been deprecated and will soon be disallowed. Please remove the parentheses."),
|
| DEPRECATED_INTERFACE("Deprecated declaration of the 'interface', use abstract 'class' instead"),
|
|
|