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

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

Issue 2874033003: Set MethodInvocation.interfaceTarget during type inference. (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 bc661dfde2eefcb96a7b873079473c985322249f..e7fe40acc71e986344625f0f19e7186bdd2808d0 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,6 +12,6 @@ class C {
class D<T> {}
C c;
-var /*@topType=D<int>*/ f = c.f<int>();
+var /*@topType=D<int>*/ f = c. /*@target=C::f*/ f<int>();
main() {}

Powered by Google App Engine
This is Rietveld 408576698