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

Unified Diff: pkg/analyzer/test/generated/parser_fasta_listener.dart

Issue 3003863002: [kernel] Position on switch expression (Closed)
Patch Set: Created 3 years, 4 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/analyzer/test/generated/parser_fasta_listener.dart
diff --git a/pkg/analyzer/test/generated/parser_fasta_listener.dart b/pkg/analyzer/test/generated/parser_fasta_listener.dart
index dc9ea66183d0fdfd6f2b02d18dfc18d92788d083..d9f685829545b164d8c9459c6a61983071f617b0 100644
--- a/pkg/analyzer/test/generated/parser_fasta_listener.dart
+++ b/pkg/analyzer/test/generated/parser_fasta_listener.dart
@@ -998,9 +998,10 @@ class ForwardingTestListener implements fasta.Listener {
}
@override
- void endSwitchBlock(int caseCount, Token beginToken, Token endToken) {
+ void endSwitchBlock(
+ int caseCount, Token beginToken, Token endToken, Token switchKeyword) {
end('SwitchBlock');
- listener.endSwitchBlock(caseCount, beginToken, endToken);
+ listener.endSwitchBlock(caseCount, beginToken, endToken, switchKeyword);
}
@override

Powered by Google App Engine
This is Rietveld 408576698