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

Unified Diff: pkg/analyzer/lib/src/summary/fasta/stack_listener.dart

Issue 2892173002: Update Listener implementations. (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | pkg/analyzer/lib/src/summary/fasta/summary_builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/summary/fasta/stack_listener.dart
diff --git a/pkg/analyzer/lib/src/summary/fasta/stack_listener.dart b/pkg/analyzer/lib/src/summary/fasta/stack_listener.dart
index c1e8be66856f5a93013c5a253f72ccb04951abdf..1b04d9b1b3df7812dfe06e9a35b0a1f4eaa39220 100644
--- a/pkg/analyzer/lib/src/summary/fasta/stack_listener.dart
+++ b/pkg/analyzer/lib/src/summary/fasta/stack_listener.dart
@@ -6,10 +6,10 @@ library fe.stack_listener;
import 'dart:collection' show Queue;
-import 'package:front_end/src/fasta/parser/identifier_context.dart';
-import 'package:front_end/src/fasta/parser/listener.dart';
-import 'package:front_end/src/fasta/scanner/token.dart';
-import 'package:front_end/src/scanner/token.dart' show Token;
+import 'package:front_end/src/fasta/parser.dart'
+ show IdentifierContext, Listener, MemberKind;
+
+import 'package:front_end/src/fasta/scanner.dart' show BeginGroupToken, Token;
enum NullValue {
Arguments,
@@ -66,7 +66,7 @@ abstract class StackListener extends Listener {
push(NullValue.Arguments);
}
- void handleNoFormalParameters(Token token) {
+ void handleNoFormalParameters(Token token, MemberKind kind) {
debugEvent("NoFormalParameters");
push(NullValue.FormalParameters);
}
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/fasta/summary_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698