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

Unified Diff: pkg/front_end/testcases/inference/block_bodied_lambdas_basic.dart.strong.expect

Issue 2883343002: Disable type erasure during strong mode tests. (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_basic.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/block_bodied_lambdas_basic.dart.strong.expect b/pkg/front_end/testcases/inference/block_bodied_lambdas_basic.dart.strong.expect
new file mode 100644
index 0000000000000000000000000000000000000000..e5bcf8fbbaa6e5047942217c70daf753fed22810
--- /dev/null
+++ b/pkg/front_end/testcases/inference/block_bodied_lambdas_basic.dart.strong.expect
@@ -0,0 +1,12 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+static method test1() → dynamic {
+ core::List<core::int> o;
+ core::Iterable<core::int> y = o.{core::Iterable::map}<core::int>((core::int x) → core::int {
+ return x.{core::num::+}(1);
+ });
+ core::Iterable<core::int> z = y;
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698