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

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

Issue 2935833002: Fix argument names for handleIndexedExpression. (Closed)
Patch Set: Created 3 years, 6 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/fasta/ast_builder.dart ('k') | pkg/front_end/lib/src/fasta/kernel/body_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/summary_builder.dart
diff --git a/pkg/analyzer/lib/src/summary/fasta/summary_builder.dart b/pkg/analyzer/lib/src/summary/fasta/summary_builder.dart
index d628a8ed4818dc435fb8cf08bb2c6a21aec7c048..4ab016cbff0523e5a0375585e6943870d2292e86 100644
--- a/pkg/analyzer/lib/src/summary/fasta/summary_builder.dart
+++ b/pkg/analyzer/lib/src/summary/fasta/summary_builder.dart
@@ -126,7 +126,8 @@ class ConstExpressionBuilder extends ExpressionListener {
push(new Invalid(hint: "assign"));
}
- void handleIndexedExpression(Token openSquareBracket, Token token) {
+ void handleIndexedExpression(
+ Token openSquareBracket, Token closeSquareBracket) {
debugEvent("Index");
if (ignore) return;
pop(); // receiver
@@ -651,7 +652,8 @@ class InitializerBuilder extends ExpressionListener {
}
}
- void handleIndexedExpression(Token openSquareBracket, Token token) {
+ void handleIndexedExpression(
+ Token openSquareBracket, Token closeSquareBracket) {
debugEvent("Index");
if (ignore) return;
pop();
« no previous file with comments | « pkg/analyzer/lib/src/fasta/ast_builder.dart ('k') | pkg/front_end/lib/src/fasta/kernel/body_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698