| 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 d7469e5a929be11fdaa6d1e2a25590de35478fde..af5715b678ac0cd23d7fb664cad14ddbc496a1f9 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java
|
| @@ -120,6 +120,7 @@ public enum ResolverErrorCode implements ErrorCode {
|
| ILLEGAL_METHOD_ACCESS_FROM_STATIC("Illegal access of instance method %s from static scope"),
|
| INIT_FIELD_ONLY_IMMEDIATELY_SURROUNDING_CLASS(
|
| "Only fields of immediately surrounding class can be initialized"),
|
| + INSTANCE_METHOD_FROM_INITIALIZER("Instance methods cannot be referenced from constructor initializer"),
|
| INSTANCE_METHOD_FROM_REDIRECT("Instance methods cannot be referenced from constructor redirects"),
|
| INSTANCE_METHOD_FROM_STATIC("Instance methods cannot be referenced from static methods"),
|
| INTERNAL_ERROR("internal error: %s"),
|
|
|