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

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

Issue 2921443002: Implement type inference for PropertyGet. (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_infer_bottom_async_star.dart
diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_async_star.dart b/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_async_star.dart
index ca275803e738c8950cdb6b6bbd9c2a604dc51ba2..7a955a9f0a87fa953c4a79b949604dc54ba89011 100644
--- a/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_async_star.dart
+++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_infer_bottom_async_star.dart
@@ -13,5 +13,5 @@ main() async {
};
Stream y = f();
Stream<String> z = f();
- String s = await f().first;
+ String s = await f(). /*@target=Stream::first*/ first;
}

Powered by Google App Engine
This is Rietveld 408576698