| 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 224e8195d1f6f04928013629a42e3e7630892bce..e1fa976b307300bc2dce3e10036e2eb129689442 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
|
| @@ -20,6 +20,8 @@ public enum TypeErrorCode implements ErrorCode {
|
| "Constructor '%s' in '%s' has parameters types (%s), doesn't match '%s' in '%s' with (%s)"),
|
| DUPLICATE_NAMED_ARGUMENT("Named parameter argument already provided as positional argument"),
|
| EXTRA_ARGUMENT("extra argument"),
|
| + FIELD_HAS_NO_GETTER("Field '%s' has no getter"),
|
| + FIELD_HAS_NO_SETTER("Field '%s' has no setter"),
|
| 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'"),
|
|
|