Chromium Code Reviews| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java |
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java |
| index b2d9886d382edc0ad54b677f5e82eca9d0ade1d7..1b9f7be9fd7f492750b8a6c3abb7e973c9be9471 100644 |
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java |
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/error/CompileTimeErrorCode.java |
| @@ -807,7 +807,8 @@ public enum CompileTimeErrorCode implements ErrorCode { |
| * 13.3 Local Variable Declaration: It is a compile-time error if <i>e</i> refers to the name |
| * <i>v</i> or the name <i>v=</i>. |
| */ |
| - REFERENCE_TO_DECLARED_VARIABLE_IN_INITIALIZER(""), |
| + REFERENCE_TO_DECLARED_VARIABLE_IN_INITIALIZER( |
| + "The name '%s' cannot be referenced in the initializer of variable with the same name"), |
|
jwren
2013/05/16 06:54:10
"of variable" -> "of a variable"
|
| /** |
| * 16.1.1 Reserved Words: A reserved word may not be used as an identifier; it is a compile-time |