Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: pkg/front_end/test/token_test.dart

Issue 2800583002: move fasta.Keyword methods to analyzer.Keyword (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/lib/src/scanner/token.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/token_test.dart
diff --git a/pkg/front_end/test/token_test.dart b/pkg/front_end/test/token_test.dart
index 1e3a1227ff71475ffc522cc93d68bba0425f03b8..6e25376804f64c53530765f38fc829436fd74ae8 100644
--- a/pkg/front_end/test/token_test.dart
+++ b/pkg/front_end/test/token_test.dart
@@ -181,7 +181,7 @@ class Foo {
]);
for (Keyword keyword in _allKeywords) {
var isBuiltIn = builtInKeywords.contains(keyword);
- expect(keyword.isPseudoKeyword, isBuiltIn, reason: keyword.name);
+ expect(keyword.isBuiltIn, isBuiltIn, reason: keyword.name);
expect((keyword as fasta.Keyword).isBuiltIn, isBuiltIn,
reason: keyword.name);
}
« no previous file with comments | « pkg/front_end/lib/src/scanner/token.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698