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

Unified Diff: pkg/front_end/testcases/inference/block_bodied_lambdas_async_all_returns_are_values.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/block_bodied_lambdas_async_all_returns_are_values.dart
diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_async_all_returns_are_values.dart b/pkg/front_end/testcases/inference/block_bodied_lambdas_async_all_returns_are_values.dart
index a76ea39b883668a065a3e09f1c4cb11b1367a311..251c2fbe62f572003cf65e731499d2a35f44d2af 100644
--- a/pkg/front_end/testcases/inference/block_bodied_lambdas_async_all_returns_are_values.dart
+++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_async_all_returns_are_values.dart
@@ -10,7 +10,7 @@ import 'dart:math' show Random;
main() {
var /*@type=() -> Future<num>*/ f = /*@returnType=Future<num>*/ () async {
- if (new Random().nextBool()) {
+ if (new Random(). /*@target=dart.math::Random::nextBool*/ nextBool()) {
return 1;
} else {
return 2.0;

Powered by Google App Engine
This is Rietveld 408576698