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

Unified Diff: pkg/front_end/lib/src/fasta/parser/listener.dart

Issue 2768523002: Fix IdentifierContext for primary expressions. Also pass IdentifierContext to handleThisExpression … (Closed)
Patch Set: 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/parser/listener.dart
diff --git a/pkg/front_end/lib/src/fasta/parser/listener.dart b/pkg/front_end/lib/src/fasta/parser/listener.dart
index 4ed742ff963a3f9ae994c6c55ea6d93dcea39fbf..b8a0294c4f2674d7e3e48a5d40e6e1ef5a5767e8 100644
--- a/pkg/front_end/lib/src/fasta/parser/listener.dart
+++ b/pkg/front_end/lib/src/fasta/parser/listener.dart
@@ -940,7 +940,7 @@ class Listener {
logEvent("StringPart");
}
- void handleSuperExpression(Token token) {
+ void handleSuperExpression(Token token, IdentifierContext context) {
logEvent("SuperExpression");
}
@@ -956,7 +956,7 @@ class Listener {
logEvent("SwitchCase");
}
- void handleThisExpression(Token token) {
+ void handleThisExpression(Token token, IdentifierContext context) {
logEvent("ThisExpression");
}
« no previous file with comments | « pkg/front_end/lib/src/fasta/parser/identifier_context.dart ('k') | pkg/front_end/lib/src/fasta/parser/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698