| 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 51fdbbdc4d1c0de618d16ed2f9172e7d807694f8..68f418eb8feeed801625e1db297d00357bbb952c 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java
|
| @@ -13,6 +13,7 @@ import com.google.dart.compiler.SubSystem;
|
| public enum ResolverErrorCode implements ErrorCode {
|
| BLACK_LISTED_EXTENDS("'%s' can not be used as superclass"),
|
| BLACK_LISTED_IMPLEMENTS("'%s' can not be used as superinterface"),
|
| + BUILT_IN_IDENTIFIER_AS_IMPORT_PREFIX("Build-in identifier '%s' cannot be used as a import prefix"),
|
| BUILT_IN_IDENTIFIER_AS_TYPE("Build-in identifier '%s' cannot be used as a type annotation"),
|
| CANNOT_ACCESS_FIELD_IN_INIT("Cannot access an instance field in an initializer expression"),
|
| CANNOT_ACCESS_METHOD(ErrorSeverity.WARNING, "Cannot access private method '%s'"),
|
|
|