| 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 ac2883b42fcc17232ee3ae85be83353be391f1a6..6ba42dced43df8486232464928071580cc8dc523 100644
|
| --- a/pkg/analyzer/lib/src/generated/error.dart
|
| +++ b/pkg/analyzer/lib/src/generated/error.dart
|
| @@ -2977,6 +2977,20 @@ class HintCode extends ErrorCode {
|
| const HintCode('UNUSED_IMPORT', "Unused import");
|
|
|
| /**
|
| + * Unused catch exception variables.
|
| + */
|
| + static const HintCode UNUSED_CATCH_CLAUSE = const HintCode(
|
| + 'UNUSED_CATCH_CLAUSE',
|
| + "The exception variable '{0}' is not used, so the 'catch' clause can be removed");
|
| +
|
| + /**
|
| + * Unused catch stack trace variables.
|
| + */
|
| + static const HintCode UNUSED_CATCH_STACK = const HintCode(
|
| + 'UNUSED_CATCH_STACK',
|
| + "The stack trace variable '{0}' is not used and can be removed");
|
| +
|
| + /**
|
| * Unused local variables are local varaibles which are never read.
|
| */
|
| static const HintCode UNUSED_LOCAL_VARIABLE = const HintCode(
|
|
|