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

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

Issue 2736093003: [fasta] Add and correct offsets on nodes (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 a9c1ef6b935b6a365405844db319c40aad546af0..1f04b6941219b29849474166ad3118a3b5a54739 100644
--- a/pkg/front_end/lib/src/fasta/parser/listener.dart
+++ b/pkg/front_end/lib/src/fasta/parser/listener.dart
@@ -382,7 +382,7 @@ class Listener {
void beginInitializedIdentifier(Token token) {}
- void endInitializedIdentifier() {
+ void endInitializedIdentifier(Token nameToken) {
logEvent("InitializedIdentifier");
}
@@ -568,7 +568,7 @@ class Listener {
void beginSend(Token token) {}
- void endSend(Token token) {
+ void endSend(Token beginToken, Token endToken) {
logEvent("Send");
}

Powered by Google App Engine
This is Rietveld 408576698