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

Unified Diff: test/wrapper_test.dart

Issue 2971283002: Add type arguments to SyntheticInvocation. (Closed)
Patch Set: Created 3 years, 5 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 | « pubspec.yaml ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/wrapper_test.dart
diff --git a/test/wrapper_test.dart b/test/wrapper_test.dart
index df26c874d264693918a4906198cb432b6264b951..9067426ce2fc71178c0af65932987fffd7535e7c 100644
--- a/test/wrapper_test.dart
+++ b/test/wrapper_test.dart
@@ -60,6 +60,9 @@ class SyntheticInvocation implements Invocation {
final int _type;
const SyntheticInvocation(this.memberName, this.positionalArguments,
this.namedArguments, this._type);
+
+ List<Type> get typeArguments => const <Type>[];
+
bool get isMethod => _type == METHOD;
bool get isGetter => _type == GETTER;
« no previous file with comments | « pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698