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

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

Issue 2899043006: cleanup fasta token classes (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 | « pkg/analyzer/lib/src/generated/parser.dart ('k') | pkg/compiler/lib/src/native/resolver.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 1b04d9b1b3df7812dfe06e9a35b0a1f4eaa39220..d8b29ea7d4148d9a4b933890f3eabd8fb577fde1 100644
--- a/pkg/analyzer/lib/src/summary/fasta/stack_listener.dart
+++ b/pkg/analyzer/lib/src/summary/fasta/stack_listener.dart
@@ -9,7 +9,9 @@ import 'dart:collection' show Queue;
import 'package:front_end/src/fasta/parser.dart'
show IdentifierContext, Listener, MemberKind;
-import 'package:front_end/src/fasta/scanner.dart' show BeginGroupToken, Token;
+import 'package:front_end/src/fasta/scanner.dart' show Token;
+
+import 'package:front_end/src/scanner/token.dart' show BeginToken;
enum NullValue {
Arguments,
@@ -96,7 +98,7 @@ abstract class StackListener extends Listener {
push(NullValue.TypeVariables);
}
- void handleParenthesizedExpression(BeginGroupToken token) {
+ void handleParenthesizedExpression(BeginToken token) {
debugEvent("ParenthesizedExpression");
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/parser.dart ('k') | pkg/compiler/lib/src/native/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698