| Index: pkg/dart_scanner/lib/src/keyword.dart
|
| diff --git a/pkg/dart_scanner/lib/src/keyword.dart b/pkg/dart_scanner/lib/src/keyword.dart
|
| index 6f14128e72af799fd5f0c9ac611007f23aa8ea11..c40c636b23066e33b9919ab2429d713f04a899f3 100644
|
| --- a/pkg/dart_scanner/lib/src/keyword.dart
|
| +++ b/pkg/dart_scanner/lib/src/keyword.dart
|
| @@ -59,6 +59,7 @@ class Keyword {
|
|
|
| const Keyword("abstract", isBuiltIn: true),
|
| const Keyword("as", info: AS_INFO, isBuiltIn: true),
|
| + const Keyword("covariant", isBuiltIn: true),
|
| const Keyword("dynamic", isBuiltIn: true),
|
| const Keyword("export", isBuiltIn: true),
|
| const Keyword("external", isBuiltIn: true),
|
| @@ -83,7 +84,7 @@ class Keyword {
|
| const Keyword("async", isPseudo: true),
|
| const Keyword("sync", isPseudo: true),
|
| const Keyword("await", isPseudo: true),
|
| - const Keyword("yield", isPseudo: true)
|
| + const Keyword("yield", isPseudo: true),
|
| ];
|
|
|
| final String syntax;
|
|
|