| 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 da4a33fb1186a31ca476fdc881d57ef34d7eaaa2..94b845baca61eafb4991ef76c21322625be2171b 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java
|
| @@ -40,7 +40,7 @@ public enum ResolverErrorCode implements ErrorCode {
|
| CANNOT_RESOLVE_FIELD("cannot resolve field %s"),
|
| CANNOT_RESOLVE_LABEL("cannot resolve label %s"),
|
| CANNOT_RESOLVE_METHOD("cannot resolve method '%s'"),
|
| - CANNOT_RESOLVE_METHOD_IN_CLASS("cannot resolve method '%s' in class '%s'"),
|
| + CANNOT_RESOLVE_METHOD_IN_CLASS(ErrorSeverity.WARNING, "cannot resolve method '%s' in class '%s'"),
|
| // TODO(zundel): error message needs JUnit test - how to test #imports in junit?
|
| CANNOT_RESOLVE_METHOD_IN_LIBRARY("cannot resolve method '%s' in library '%s'"),
|
| // TODO(zundel): To exercise this requires simulating a corrupted SDK?
|
|
|