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

Unified Diff: pkg/front_end/testcases/inference/future_union_downwards_2.dart.direct.expect

Issue 2976283002: Update expectations. (Closed)
Patch Set: Update compile.status. Created 3 years, 5 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/future_union_downwards_2.dart.direct.expect
diff --git a/pkg/front_end/testcases/inference/future_union_downwards_2.dart.direct.expect b/pkg/front_end/testcases/inference/future_union_downwards_2.dart.direct.expect
new file mode 100644
index 0000000000000000000000000000000000000000..55196f7bdd168d83b6000a1ac46e1d3c47998312
--- /dev/null
+++ b/pkg/front_end/testcases/inference/future_union_downwards_2.dart.direct.expect
@@ -0,0 +1,24 @@
+library test;
+import self as self;
+import "dart:core" as core;
+import "dart:async" as asy;
+
+class MyFuture<T extends core::Object> extends core::Object implements asy::Future<self::MyFuture::T> {
+ constructor •() → void
+ : super core::Object::•() {}
+ constructor value([dynamic x = null]) → void
+ : super core::Object::•() {}
+ abstract method noSuchMethod(dynamic invocation) → dynamic;
+ method then<S extends core::Object>((self::MyFuture::T) → asy::FutureOr<self::MyFuture::then::S> f, {core::Function onError = null}) → self::MyFuture<self::MyFuture::then::S>
+ return null;
+}
+static field self::MyFuture<dynamic> f;
+static field asy::Future<core::int> t1 = self::f.then((dynamic _) → dynamic => new self::MyFuture::value<dynamic>("hi"));
+static field asy::Future<core::List<core::int>> t2 = self::f.then((dynamic _) → dynamic => <dynamic>[3]);
+static method g2() → asy::Future<core::List<core::int>> async {
+ return <dynamic>[3];
+}
+static method g3() → asy::Future<core::List<core::int>> async {
+ return new self::MyFuture::value<dynamic>(<dynamic>[3]);
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698