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

Unified Diff: pkg/front_end/lib/src/fasta/scanner/token.dart

Issue 2750863002: Complain about built-in identifiers. (Closed)
Patch Set: Update status file some more. Created 3 years, 9 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
Index: pkg/front_end/lib/src/fasta/scanner/token.dart
diff --git a/pkg/front_end/lib/src/fasta/scanner/token.dart b/pkg/front_end/lib/src/fasta/scanner/token.dart
index 6cacd012d2b5b5260dfdc555b6dcdb902a9094c9..4a36008167df3d7cf17c563fad797d2aa9cc9939 100644
--- a/pkg/front_end/lib/src/fasta/scanner/token.dart
+++ b/pkg/front_end/lib/src/fasta/scanner/token.dart
@@ -123,6 +123,8 @@ abstract class Token {
int get charEnd => charOffset + charCount;
bool get isEof => false;
+
+ bool get isBuiltInIdentifier => false;
}
/**
@@ -174,6 +176,12 @@ class KeywordToken extends Token {
bool isIdentifier() => keyword.isPseudo || keyword.isBuiltIn;
+ bool get isBuiltInIdentifier {
+ // TODO(ahe): Remove special case for "deferred" once dartbug.com/29069 is
+ // fixed.
+ return keyword.isBuiltIn || identical("deferred", lexeme);
+ }
+
String toString() => "KeywordToken($lexeme)";
}

Powered by Google App Engine
This is Rietveld 408576698