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

Unified Diff: pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.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/lambda_does_not_have_propagated_type_hint.dart
diff --git a/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart b/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
index c6b98e79d70940923cccf05c3141c43547340182..87e93516151d0b7a0c3434bc6af62ff9f0e6d5bf 100644
--- a/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
+++ b/pkg/front_end/testcases/inference/lambda_does_not_have_propagated_type_hint.dart
@@ -9,7 +9,7 @@ List<String> getListOfString() => const <String>[];
void foo() {
List myList = getListOfString();
- /*@promotedType=none*/ myList. /*@typeArgs=int*/ map(
+ /*@promotedType=none*/ myList. /*@typeArgs=int*/ /*@target=List::map*/ map(
/*@returnType=int*/ (/*@type=dynamic*/ type) => 42);
}

Powered by Google App Engine
This is Rietveld 408576698