| 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 13168097ad6e9c77a6cbf8c37de93c3482dd5d16..b3c645f63e39141b71b06c9f4aa23826b5a6ed60 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
|
| @@ -124,9 +124,11 @@ public enum CompileTimeErrorCode implements ErrorCode {
|
| /**
|
| * 7.6.3 Constant Constructors: It is a compile-time error if a constant constructor is declared
|
| * by a class that has a non-final instance variable.
|
| + * <p>
|
| + * The above refers to both locally declared and inherited instance variables.
|
| */
|
| CONST_CONSTRUCTOR_WITH_NON_FINAL_FIELD(
|
| - "Classes with non-final fields cannot define 'const' constructors"),
|
| + "Cannot define the 'const' constructor for a class with non-final fields"),
|
|
|
| /**
|
| * 6.2 Formal Parameters: It is a compile-time error if a formal parameter is declared as a
|
|
|