| Index: lib/compiler/implementation/warnings.dart
|
| diff --git a/lib/compiler/implementation/warnings.dart b/lib/compiler/implementation/warnings.dart
|
| index 19f75f4614aa892d0e39b1ae72ff594966309b00..b5bc17b20e32a96a09cfb108273487a375effba6 100644
|
| --- a/lib/compiler/implementation/warnings.dart
|
| +++ b/lib/compiler/implementation/warnings.dart
|
| @@ -165,6 +165,12 @@ class MessageKind {
|
| static final ILLEGAL_SUPER_SEND = const MessageKind(
|
| "#{1} cannot be called on super");
|
|
|
| + static final ADDITIONAL_TYPE_ARGUMENT = const MessageKind(
|
| + "additional type argument");
|
| +
|
| + static final MISSING_TYPE_ARGUMENT = const MessageKind(
|
| + "missing type argument");
|
| +
|
| toString() => template;
|
| }
|
|
|
|
|