| 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 8b002d597e8b9bbb94034fbd7b62b00694e0a070..21e99358aa86e2af227f00338fe0ac41c1f93ee0 100644
|
| --- a/pkg/analyzer/lib/src/generated/error.dart
|
| +++ b/pkg/analyzer/lib/src/generated/error.dart
|
| @@ -4839,11 +4839,19 @@ class StaticWarningCode extends ErrorCode {
|
| * 12.31 Type Test: It is a static warning if <i>T</i> does not denote a type
|
| * available in the current lexical scope.
|
| */
|
| - static const StaticWarningCode TYPE_TEST_NON_TYPE = const StaticWarningCode(
|
| - 'TYPE_TEST_NON_TYPE',
|
| + static const StaticWarningCode TYPE_TEST_WITH_NON_TYPE = const StaticWarningCode(
|
| + 'TYPE_TEST_WITH_NON_TYPE',
|
| "The name '{0}' is not a type and cannot be used in an 'is' expression");
|
|
|
| /**
|
| + * 12.31 Type Test: It is a static warning if <i>T</i> does not denote a type
|
| + * available in the current lexical scope.
|
| + */
|
| + static const StaticWarningCode TYPE_TEST_WITH_UNDEFINED_NAME = const StaticWarningCode(
|
| + 'TYPE_TEST_WITH_UNDEFINED_NAME',
|
| + "The name '{0}' is not defined and cannot be used in an 'is' expression");
|
| +
|
| + /**
|
| * 10 Generics: However, a type parameter is considered to be a malformed type
|
| * when referenced by a static member.
|
| *
|
|
|