| Index: lib/compiler/implementation/warnings.dart
|
| diff --git a/lib/compiler/implementation/warnings.dart b/lib/compiler/implementation/warnings.dart
|
| index b4b1cec2097d16b15eb58ec458e817ffe7976c54..e938bbfab17b114555e9e74531b7ffa9475009fc 100644
|
| --- a/lib/compiler/implementation/warnings.dart
|
| +++ b/lib/compiler/implementation/warnings.dart
|
| @@ -122,6 +122,8 @@ class MessageKind {
|
| 'target of continue is not a loop or switch case');
|
| static final TYPE_VARIABLE_AS_CONSTRUCTOR = const MessageKind(
|
| 'cannot use type variable as constructor');
|
| + static final DUPLICATE_TYPE_VARIABLE_NAME = const MessageKind(
|
| + 'type variable #{1} already declared');
|
| static final INVALID_BREAK = const MessageKind(
|
| 'target of break is not a statement');
|
| static final INVALID_USE_OF_SUPER = const MessageKind(
|
|
|