| Index: lib/compiler/implementation/scanner/keyword.dart
|
| diff --git a/lib/compiler/implementation/scanner/keyword.dart b/lib/compiler/implementation/scanner/keyword.dart
|
| index a3696bb52ccfa8e5d9b378d8e0dfea3902c1e2a9..31a4614bcd0453b7d5b2b48a561b1c78fb257a4b 100644
|
| --- a/lib/compiler/implementation/scanner/keyword.dart
|
| +++ b/lib/compiler/implementation/scanner/keyword.dart
|
| @@ -7,6 +7,7 @@
|
| */
|
| class Keyword implements SourceString {
|
| static const List<Keyword> values = const <Keyword> [
|
| + const Keyword("assert"),
|
| const Keyword("break"),
|
| const Keyword("case"),
|
| const Keyword("catch"),
|
| @@ -42,7 +43,6 @@ class Keyword implements SourceString {
|
|
|
| const Keyword("abstract", isBuiltIn: true),
|
| const Keyword("as", info: AS_INFO, isBuiltIn: true),
|
| - const Keyword("assert", isBuiltIn: true),
|
| const Keyword("dynamic", isBuiltIn: true),
|
| const Keyword("export", isBuiltIn: true),
|
| const Keyword("external", isBuiltIn: true),
|
|
|