Chromium Code Reviews| 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..527af85973df7f7055536c6dc79d6298280043da 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 hidden name '{0}' is undefined."); |
|
Lasse Reichstein Nielsen
2016/04/19 12:36:32
"is undefined" is a little vague. Maybe:
The libr
srawlins
2016/04/20 20:34:01
Done.
|
| + |
| + /** |
| * 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 shown name '{0}' is undefined."); |
| + |
| + /** |
| * Unnecessary cast. |
| */ |
| static const HintCode UNNECESSARY_CAST = |