| Index: lib/compiler/implementation/warnings.dart
|
| diff --git a/lib/compiler/implementation/warnings.dart b/lib/compiler/implementation/warnings.dart
|
| index 3c0ec5300aa8bd1231f8a0cefca979b9b3e21b78..dee9526b72f8621565ce9e685ed213da7a3609fd 100644
|
| --- a/lib/compiler/implementation/warnings.dart
|
| +++ b/lib/compiler/implementation/warnings.dart
|
| @@ -116,6 +116,9 @@ class MessageKind {
|
| 'cannot use modifiers in catch');
|
| static const OPTIONAL_PARAMETER_IN_CATCH = const MessageKind(
|
| 'cannot use optional parameters in catch');
|
| + static const THROW_WITHOUT_EXPRESSION = const MessageKind(
|
| + 'cannot use re-throw outside of catch block (expression expected after '
|
| + '"throw")');
|
| static const UNBOUND_LABEL = const MessageKind(
|
| 'cannot resolve label #{1}');
|
| static const NO_BREAK_TARGET = const MessageKind(
|
|
|