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

Unified Diff: pkg/front_end/testcases/inference/infer_statics_with_method_invocations.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/infer_statics_with_method_invocations.dart
diff --git a/pkg/front_end/testcases/inference/infer_statics_with_method_invocations.dart b/pkg/front_end/testcases/inference/infer_statics_with_method_invocations.dart
index 1a5fabeb89b6e1d2ece02dd3d1ec77633085b8a9..192b33983e235bba1c83667595151443d324b8e4 100644
--- a/pkg/front_end/testcases/inference/infer_statics_with_method_invocations.dart
+++ b/pkg/front_end/testcases/inference/infer_statics_with_method_invocations.dart
@@ -8,7 +8,7 @@ library test;
import 'infer_statics_with_method_invocations_a.dart';
class T {
- static final T foo = m1(m2(m3('', '')));
+ static final T foo = /*@target=T::m1*/ m1(/*@target=T::m2*/ m2(m3('', '')));
static T m1(String m) {
return null;
}

Powered by Google App Engine
This is Rietveld 408576698