| Index: pkg/analyzer/lib/src/generated/error.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/error.dart b/pkg/analyzer/lib/src/generated/error.dart
|
| index bedfdd8bc7c3f1250c536599b7bf3092e65c44e7..fd71772e0a293765d3c5d7a9b0644b57727d1878 100644
|
| --- a/pkg/analyzer/lib/src/generated/error.dart
|
| +++ b/pkg/analyzer/lib/src/generated/error.dart
|
| @@ -2373,13 +2373,26 @@ class CompileTimeErrorCode extends ErrorCode {
|
| * Parameters:
|
| * 0: the URI pointing to a non-existent file
|
| *
|
| - * See [INVALID_URI].
|
| + * See [INVALID_URI], [URI_HAS_NOT_BEEN_GENERATED].
|
| */
|
| static const CompileTimeErrorCode URI_DOES_NOT_EXIST =
|
| const CompileTimeErrorCode(
|
| 'URI_DOES_NOT_EXIST', "Target of URI does not exist: '{0}'");
|
|
|
| /**
|
| + * Just like [URI_DOES_NOT_EXIST], but used when the URI refers to a file that
|
| + * is expected to be generated.
|
| + *
|
| + * Parameters:
|
| + * 0: the URI pointing to a non-existent file
|
| + *
|
| + * See [INVALID_URI], [URI_DOES_NOT_EXIST].
|
| + */
|
| + static const CompileTimeErrorCode URI_HAS_NOT_BEEN_GENERATED =
|
| + const CompileTimeErrorCode('URI_HAS_NOT_BEEN_GENERATED',
|
| + "Target of URI has not been generated: '{0}'");
|
| +
|
| + /**
|
| * 14.1 Imports: It is a compile-time error if <i>x</i> is not a compile-time
|
| * constant, or if <i>x</i> involves string interpolation.
|
| *
|
| @@ -4286,8 +4299,7 @@ class StaticTypeWarningCode extends ErrorCode {
|
| *
|
| */
|
| static const StaticTypeWarningCode NON_NULLABLE_FIELD_NOT_INITIALIZED =
|
| - const StaticTypeWarningCode(
|
| - 'NON_NULLABLE_FIELD_NOT_INITIALIZED',
|
| + const StaticTypeWarningCode('NON_NULLABLE_FIELD_NOT_INITIALIZED',
|
| "Variable '{0}' of non-nullable type '{1}' must be initialized");
|
|
|
| /**
|
|
|