| 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 10a8451d330a218f9970ab372cc111f7b066893c..065e3fb19d356724bd80cf07090aec2ef0109518 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
|
| @@ -14,6 +14,7 @@ public enum TypeErrorCode implements ErrorCode {
|
| ASSERT_BOOL("assert requires 'bool' expression or '() -> bool' function"),
|
| ASSERT_NUMBER_ARGUMENTS(ErrorSeverity.ERROR, "assert requires exactly one argument"),
|
| ASSERT_IS_STATEMENT(ErrorSeverity.ERROR, "assert is a statement, it cannot be used as an expression"),
|
| + CANNOT_ASSIGN_TO("cannot assign to '%s'"),
|
| CANNOT_BE_RESOLVED("cannot resolve %s", true),
|
| CANNOT_OVERRIDE_TYPED_MEMBER("cannot override %s of %s because %s is not assignable to %s"),
|
| CANNOT_OVERRIDE_METHOD_DEFAULT_VALUE("cannot override method '%s', default value doesn't match '%s'"),
|
|
|