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 f6d91c63ce599043dcd50e2eccd3b0504a8bef13..1a80391ee67263594ec0d2b8060887a074fa25d6 100644 |
--- a/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
+++ b/compiler/java/com/google/dart/compiler/resolver/ResolverErrorCode.java |
@@ -213,6 +213,7 @@ public enum ResolverErrorCode implements ErrorCode { |
"type variables are not allowed in identifier expressions"), |
USE_ASSIGNMENT_ON_SETTER("Use assignment to set field '%s'"), |
USING_LOCAL_VARIABLE_BEFORE_DECLARATION("Using local variable '%s' before its declaration in lexical scope"), |
+ VARIABLE_REFERENCES_SAME_NAME_IN_INITIALIZER("Initializer of variable \"%s\" cannot refer to the name \"%s\""), |
WRONG_NUMBER_OF_TYPE_ARGUMENTS("%s: wrong number of type arguments (%d). Expected %d"); |
private final ErrorSeverity severity; |