| Index: pkg/front_end/lib/src/scanner/token.dart
|
| diff --git a/pkg/front_end/lib/src/scanner/token.dart b/pkg/front_end/lib/src/scanner/token.dart
|
| index 95c1005922d9e8f245c236a8b381ca2a3e0d6934..abd0194c5f82edbf056b90e277badb68ba5121bf 100644
|
| --- a/pkg/front_end/lib/src/scanner/token.dart
|
| +++ b/pkg/front_end/lib/src/scanner/token.dart
|
| @@ -166,6 +166,9 @@ class Keyword {
|
|
|
| static const Keyword CONTINUE = const Keyword._('CONTINUE', "continue");
|
|
|
| + static const Keyword COVARIANT =
|
| + const Keyword._('COVARIANT', "covariant", true);
|
| +
|
| static const Keyword DEFAULT = const Keyword._('DEFAULT', "default");
|
|
|
| static const Keyword DEFERRED = const Keyword._('DEFERRED', "deferred", true);
|
| @@ -257,6 +260,7 @@ class Keyword {
|
| CLASS,
|
| CONST,
|
| CONTINUE,
|
| + COVARIANT,
|
| DEFAULT,
|
| DEFERRED,
|
| DO,
|
|
|