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 093334defa2d0cf61831130ad6ac8634bc6573ee..1087830f32e48432b207a98ae42de194b938a8c0 100644 |
--- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
+++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
@@ -33,6 +33,7 @@ public enum ResolverErrorCode implements ErrorCode { |
CANNOT_HIDE_IMPORT_PREFIX("Cannot hide import prefix '%s'"), |
CANNOT_INIT_STATIC_FIELD_IN_INITIALIZER("Cannot initialize a static field in an initializer list"), |
CANNOT_MIXIN_CLASS_WITH_CONSTRUCTOR("Cannot use class with constructor as a mixin."), |
+ CANNOT_MIXIN_CLASS_WITH_MIXINS("Cannot use class with mixins as a mixin."), |
CANNOT_MIXIN_CLASS_WITH_SUPER("Cannot use class with super invocation as a mixin."), |
CANNOT_OVERRIDE_INSTANCE_MEMBER("static member cannot override instance member %s of %s"), |
CANNOT_OVERRIDE_METHOD_NUM_REQUIRED_PARAMS( |