Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java |
| diff --git a/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java b/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java |
| index 4aa03228ce55fe1c6a272b2d6dc14f67c2aa12d5..42c4b979de6ea6e128a09e2bdcbdf3112323bff5 100644 |
| --- a/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java |
| +++ b/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java |
| @@ -25,6 +25,7 @@ public enum TypeErrorCode implements ErrorCode { |
| EXTRA_ARGUMENT("extra argument"), |
| FIELD_HAS_NO_GETTER("Field '%s' has no getter"), |
| FIELD_HAS_NO_SETTER("Field '%s' has no setter"), |
| + FIELD_IS_FINAL("Field '%s' is final"), |
|
Brian Wilkerson
2012/05/24 20:07:24
This should probably say something about assignmen
|
| FOR_IN_WITH_ITERATOR_FIELD("iterator is a field, expected an iterator() method"), |
| FOR_IN_WITH_INVALID_ITERATOR_RETURN_TYPE("iterator method's return type is not assignable to %s"), |
| INSTANTIATION_OF_ABSTRACT_CLASS("instantiation of an abstract class '%s'"), |