Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
| diff --git a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
| index 2ad904dfce414dddfa326b5d29f6c93755909de5..ca2cb8b08d538e5c362d8361c349c468bd1fd386 100644 |
| --- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
| +++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
| @@ -145,6 +145,7 @@ public enum ResolverErrorCode implements ErrorCode { |
| THIS_OUTSIDE_OF_METHOD("Cannot use 'this' outside of a method"), |
| THIS_IN_FACTORY_CONSTRUCTOR("Cannot use 'this' in a factory constructor"), |
| TOO_MANY_QUALIFIERS_FOR_METHOD("Too many qualifiers for method or constructor"), |
| + TOPLEVEL_FINAL_REQUIRES_VALUE("Toplevel final fields must have an initial value"), |
|
scheglov
2012/04/04 15:21:04
We used "top-level" in the other places.
zundel
2012/04/04 17:49:31
Done.
|
| TYPE_ARGS_ONLY_ON_CONSTRUCTORS("Type arguments are only allowed on constructor methods"), |
| TYPE_NOT_ASSIGNMENT_COMPATIBLE("%s is not assignable to %s"), |
| TYPE_VARIABLE_DOES_NOT_MATCH("Type variable %s does not match %s in default class %s."), |