Index: pkg/front_end/testcases/inference/future_then_conditional_4.dart.strong.expect |
diff --git a/pkg/front_end/testcases/inference/future_then_conditional_4.dart.strong.expect b/pkg/front_end/testcases/inference/future_then_conditional_4.dart.strong.expect |
index 57084b1d71f6f80a440b7aaae34121da0c5cb992..3255a2a3eb9d79d05f0dca4ea60fb411478fd5b7 100644 |
--- a/pkg/front_end/testcases/inference/future_then_conditional_4.dart.strong.expect |
+++ b/pkg/front_end/testcases/inference/future_then_conditional_4.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; |
- self::MyFuture<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)); |
+ self::MyFuture<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)); |
self::MyFuture<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); |
}); |
- self::MyFuture<core::int> t5 = f.{self::MyFuture::then}<core::int>((core::bool x) → core::Object => x ? 2 : new self::MyFuture::value<core::int>(3)); |
+ self::MyFuture<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)); |
self::MyFuture<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 {} |