| Index: pkg/front_end/testcases/inference/future_then_conditional_2.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/future_then_conditional_2.dart.strong.expect b/pkg/front_end/testcases/inference/future_then_conditional_2.dart.strong.expect
|
| index 7ea463dcc5662bf5b02dc6f26c13a41729dbd857..7f9f908ef611933201c11874d7d8ab28aaedb235 100644
|
| --- a/pkg/front_end/testcases/inference/future_then_conditional_2.dart.strong.expect
|
| +++ b/pkg/front_end/testcases/inference/future_then_conditional_2.dart.strong.expect
|
| @@ -14,13 +14,13 @@ class MyFuture<T extends core::Object> extends core::Object implements asy::Futu
|
| }
|
| static method test() → void {
|
| self::MyFuture<core::bool> f;
|
| - asy::Future<core::int> t1 = f.{self::MyFuture::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.{self::MyFuture::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.{self::MyFuture::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.{self::MyFuture::then}<core::int>((core::bool x) → core::Object => x ? 2 : new self::MyFuture::value<core::int>(3));
|
| + asy::Future<core::int> t5 = f.{self::MyFuture::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.{self::MyFuture::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 {}
|
|
|