| Index: pkg/analyzer/lib/src/generated/generated/shared_messages.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/generated/shared_messages.dart b/pkg/analyzer/lib/src/generated/generated/shared_messages.dart
|
| index 3ee0ca89bbd6513b05a6ceff0289deab155168de..e99ad4db489ddabed2f315adfa575940a856c18a 100644
|
| --- a/pkg/analyzer/lib/src/generated/generated/shared_messages.dart
|
| +++ b/pkg/analyzer/lib/src/generated/generated/shared_messages.dart
|
| @@ -62,6 +62,16 @@ const ParserErrorCode CONSTRUCTOR_WITH_RETURN_TYPE = const ParserErrorCode(
|
| "Constructors can't have a return type",
|
| "Try removing the return type."); // Generated. Don't edit.
|
|
|
| +const ParserErrorCode MISSING_EXPRESSION_IN_THROW = const ParserErrorCode(
|
| + 'MISSING_EXPRESSION_IN_THROW',
|
| + "Throw expressions must compute the object to be thrown.",
|
| + "Did you mean 'rethrow'?"); // Generated. Don't edit.
|
| +
|
| +const CompileTimeErrorCode RETHROW_OUTSIDE_CATCH = const CompileTimeErrorCode(
|
| + 'RETHROW_OUTSIDE_CATCH',
|
| + "Rethrow must be inside of catch clause",
|
| + "Try moving the expression into a catch clause, or using a 'throw' expression."); // Generated. Don't edit.
|
| +
|
| const CompileTimeErrorCode RETURN_IN_GENERATIVE_CONSTRUCTOR = const CompileTimeErrorCode(
|
| 'RETURN_IN_GENERATIVE_CONSTRUCTOR',
|
| "Constructors can't return values.",
|
|
|