| 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 8237bfe3fea2e3fa786a4f381409862bdc152fc5..32fb04d463051b1725a38697f17a0633d9fa215f 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
|
| @@ -1054,6 +1054,19 @@ public enum CompileTimeErrorCode implements ErrorCode {
|
| * 7.6.2 Factories: It is a compile-time error if <i>k</i> is prefixed with the const modifier but
|
| * <i>k'</i> is not a constant constructor.
|
| */
|
| + REDIRECT_TO_MISSING_CONSTRUCTOR("The constructor '%s' could not be found in '%s'"),
|
| +
|
| + /**
|
| + * 7.6.2 Factories: It is a compile-time error if <i>k</i> is prefixed with the const modifier but
|
| + * <i>k'</i> is not a constant constructor.
|
| + */
|
| + REDIRECT_TO_NON_CLASS(
|
| + "The name '%s' is not a type and cannot be used in a redirected constructor"),
|
| +
|
| + /**
|
| + * 7.6.2 Factories: It is a compile-time error if <i>k</i> is prefixed with the const modifier but
|
| + * <i>k'</i> is not a constant constructor.
|
| + */
|
| REDIRECT_TO_NON_CONST_CONSTRUCTOR(
|
| "Constant factory constructor cannot delegate to a non-constant constructor"),
|
|
|
|
|