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

Unified Diff: pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method_identifier_sequence.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_identifier_sequence.dart
diff --git a/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method_identifier_sequence.dart b/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method_identifier_sequence.dart
index 12f0e5fd72b856fff5b5eda3feab7f65bdb3e5f8..0a436a9003a68e788cc6d4e67c5b7ec664d8b49a 100644
--- a/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method_identifier_sequence.dart
+++ b/pkg/front_end/testcases/inference/method_call_with_type_arguments_instance_method_identifier_sequence.dart
@@ -12,4 +12,4 @@ class C {
class D<T> {}
C c;
-var /*@topType=D<int>*/ f = c. /*@typeArgs=int*/ f<int>();
+var /*@topType=D<int>*/ f = c.f<int>();

Powered by Google App Engine
This is Rietveld 408576698