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 b77604c1aecd12b8931bb7be3de9e2b6cfd25e89..2a5482d083388a47415b4708614fdb75734e6ab8 100644 |
--- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
+++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
@@ -178,6 +178,7 @@ public enum ResolverErrorCode implements ErrorCode { |
// TODO(zundel): error message needs JUnit test (reachable code?) |
NOT_AN_INSTANCE_FIELD("%s is not an instance field"), |
NOT_GENERATIVE_SUPER_CONSTRUCTOR("Constructor '%s' in class '%s' is not generative."), |
+ ONLY_OBJECT_MIXIN_SUPERCLASS("Only Object is allowed to be a superclass of a mixin."), |
OPTIONAL_PARAMETERS_CANNOT_START_WITH_UNDER("Optional parameters cannot start with an '_' character"), |
PARAMETER_INIT_OUTSIDE_CONSTRUCTOR("Parameter initializers can only be used in constructors"), |
SUPER_METHOD_INVOCATION_IN_CONSTRUCTOR_INITIALIZER( |