| 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 f3947b43bc20b38a9773a44fbfbc42729cb3b480..1976e3af765f400b5168430e9de9e2a81d4c45c1 100644
|
| --- a/pkg/analyzer/lib/src/generated/error.dart
|
| +++ b/pkg/analyzer/lib/src/generated/error.dart
|
| @@ -2695,9 +2695,11 @@ abstract class ErrorCode {
|
| HintCode.TYPE_CHECK_IS_NOT_NULL,
|
| HintCode.TYPE_CHECK_IS_NULL,
|
| HintCode.UNDEFINED_GETTER,
|
| + HintCode.UNDEFINED_HIDDEN_NAME,
|
| HintCode.UNDEFINED_METHOD,
|
| HintCode.UNDEFINED_OPERATOR,
|
| HintCode.UNDEFINED_SETTER,
|
| + HintCode.UNDEFINED_SHOWN_NAME,
|
| HintCode.UNNECESSARY_CAST,
|
| HintCode.UNNECESSARY_NO_SUCH_METHOD,
|
| HintCode.UNNECESSARY_TYPE_CHECK_FALSE,
|
| @@ -3687,6 +3689,13 @@ class HintCode extends ErrorCode {
|
| shared_messages.UNDEFINED_GETTER_HINT;
|
|
|
| /**
|
| + * An undefined name hidden in an import or export directive.
|
| + */
|
| + static const HintCode UNDEFINED_HIDDEN_NAME = const HintCode(
|
| + 'UNDEFINED_HIDDEN_NAME',
|
| + "The library '{0}' doesn't export a member with the hidden name '{1}'");
|
| +
|
| + /**
|
| * This hint is generated anywhere where the
|
| * [StaticTypeWarningCode.UNDEFINED_METHOD] would have been generated, if we
|
| * used propagated information for the warnings.
|
| @@ -3724,6 +3733,13 @@ class HintCode extends ErrorCode {
|
| shared_messages.UNDEFINED_SETTER_HINT;
|
|
|
| /**
|
| + * An undefined name shown in an import or export directive.
|
| + */
|
| + static const HintCode UNDEFINED_SHOWN_NAME = const HintCode(
|
| + 'UNDEFINED_SHOWN_NAME',
|
| + "The library '{0}' doesn't export a member with the shown name '{1}'");
|
| +
|
| + /**
|
| * Unnecessary cast.
|
| */
|
| static const HintCode UNNECESSARY_CAST =
|
|
|