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

Unified Diff: pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method.dart

Issue 2866363004: Fix annotation of generic method invocations in Fasta inference tests (again). (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
Index: pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method.dart
diff --git a/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method.dart b/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method.dart
index 7094c035a48503ee477d5d7258239c24e70f3262..3568c7d514e197f19be99301c1fe824f6a3eb861 100644
--- a/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method.dart
+++ b/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method.dart
@@ -11,4 +11,4 @@ class C {
class D<T> {}
-var /*@topType=D<int>*/ f = new C(). /*@typeArgs=int*/ f<int>();
+var /*@topType=D<int>*/ f = new C().f<int>();

Powered by Google App Engine
This is Rietveld 408576698