Index: pkg/front_end/testcases/inference/future_then_conditional_5.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/future_then_conditional_5.dart.strong.expect b/pkg/front_end/testcases/inference/future_then_conditional_5.dart.strong.expect |
index 280de18d805215710f7e65b3167036bd62c88264..6e16ffa821ec963b2c21c9e5378f22a58d335f41 100644 |
--- a/pkg/front_end/testcases/inference/future_then_conditional_5.dart.strong.expect |
+++ b/pkg/front_end/testcases/inference/future_then_conditional_5.dart.strong.expect |
@@ -14,13 +14,13 @@ class MyFuture<T extends core::Object> extends core::Object implements asy::Futu |
} |
static method test() → void { |
asy::Future<core::bool> f; |
- asy::Future<core::int> t1 = f.{asy::Future::then}<core::int>((core::bool x) → asy::Future<core::int> async => x ? 2 : await new self::MyFuture::value<core::int>(3)); |
+ asy::Future<core::int> t1 = f.{asy::Future::then}<core::int>((core::bool x) → asy::Future<core::int> async => x ?{core::int} 2 : await new self::MyFuture::value<core::int>(3)); |
asy::Future<core::int> t2 = f.{asy::Future::then}<core::int>((core::bool x) → asy::Future<core::int> async { |
- return await x ? 2 : new self::MyFuture::value<core::int>(3); |
+ return await x ?{core::Object} 2 : new self::MyFuture::value<core::int>(3); |
}); |
- asy::Future<core::int> t5 = f.{asy::Future::then}<core::int>((core::bool x) → core::Object => x ? 2 : new self::MyFuture::value<core::int>(3)); |
+ asy::Future<core::int> t5 = f.{asy::Future::then}<core::int>((core::bool x) → core::Object => x ?{core::Object} 2 : new self::MyFuture::value<core::int>(3)); |
asy::Future<core::int> t6 = f.{asy::Future::then}<core::int>((core::bool x) → asy::FutureOr<core::int> { |
- return x ? 2 : new self::MyFuture::value<core::int>(3); |
+ return x ?{core::Object} 2 : new self::MyFuture::value<core::int>(3); |
}); |
} |
static method main() → dynamic {} |