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

Unified Diff: pkg/front_end/lib/src/fasta/source/outline_builder.dart

Issue 2693453004: Include class names in parser events. (Closed)
Patch Set: Created 3 years, 10 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/fasta/parser/parser.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/lib/src/fasta/source/outline_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/source/outline_builder.dart b/pkg/front_end/lib/src/fasta/source/outline_builder.dart
index 5bc5dbe083b4ad63db25e285d79de0335eeee1ba..13cc05d47123654d9516453e423699bc5df114e2 100644
--- a/pkg/front_end/lib/src/fasta/source/outline_builder.dart
+++ b/pkg/front_end/lib/src/fasta/source/outline_builder.dart
@@ -193,7 +193,7 @@ class OutlineBuilder extends UnhandledListener {
}
@override
- void beginClassDeclaration(Token begin) {
+ void beginClassDeclaration(Token begin, Token name) {
library.beginNestedDeclaration();
}
@@ -301,7 +301,7 @@ class OutlineBuilder extends UnhandledListener {
}
@override
- void beginNamedMixinApplication(Token token) {
+ void beginNamedMixinApplication(Token begin, Token name) {
library.beginNestedDeclaration(hasMembers: false);
}
« no previous file with comments | « pkg/front_end/lib/src/fasta/parser/parser.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698