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

Unified Diff: pkg/analyzer/lib/src/dart/ast/ast.dart

Issue 1717243003: cleanup to InvocationExpression AST declaration (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« pkg/analyzer/lib/dart/ast/ast.dart ('K') | « pkg/analyzer/lib/dart/ast/ast.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/dart/ast/ast.dart
diff --git a/pkg/analyzer/lib/src/dart/ast/ast.dart b/pkg/analyzer/lib/src/dart/ast/ast.dart
index 6357be298e20fdce81f957919e638f1737288aaf..48332fbe2d7c673572053c22427294b756ea1577 100644
--- a/pkg/analyzer/lib/src/dart/ast/ast.dart
+++ b/pkg/analyzer/lib/src/dart/ast/ast.dart
@@ -6130,15 +6130,15 @@ class InterpolationStringImpl extends InterpolationElementImpl
abstract class InvocationExpressionImpl extends ExpressionImpl
implements InvocationExpression {
/**
- * The type arguments to be applied to the method being invoked, or `null` if
- * no type arguments were provided.
+ * The list of arguments to the function.
*/
- TypeArgumentList _typeArguments;
+ ArgumentList _argumentList;
/**
- * The list of arguments to the function.
+ * The type arguments to be applied to the method being invoked, or `null` if
+ * no type arguments were provided.
*/
- ArgumentList _argumentList;
+ TypeArgumentList _typeArguments;
@override
DartType propagatedInvokeType;
« pkg/analyzer/lib/dart/ast/ast.dart ('K') | « pkg/analyzer/lib/dart/ast/ast.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698