Chromium Code Reviews| Index: tests/lib_2/async/future_value_chain4_test.dart |
| diff --git a/tests/lib_strong/async/future_value_chain4_test.dart b/tests/lib_2/async/future_value_chain4_test.dart |
| similarity index 86% |
| rename from tests/lib_strong/async/future_value_chain4_test.dart |
| rename to tests/lib_2/async/future_value_chain4_test.dart |
| index 38952e9c33ab2c218073bc1cbaef467b9f7991ae..f9940a53767dcf80b387d90ee9230ea6adddcba1 100644 |
| --- a/tests/lib_strong/async/future_value_chain4_test.dart |
| +++ b/tests/lib_2/async/future_value_chain4_test.dart |
| @@ -6,11 +6,12 @@ import 'package:async_helper/async_helper.dart'; |
| import "package:expect/expect.dart"; |
| import 'dart:async'; |
| -class MyFuture implements Future { |
| - then(valueHandler, {onError}) { |
| +class MyFuture<T> implements Future<T> { |
| + Future<S> then<S>(dynamic valueHandler(T), {Function onError}) { |
|
Bob Nystrom
2017/08/16 22:27:20
"dynamic" -> "S"?
bkonyi
2017/08/16 23:44:13
dynamic -> FutureOr<S> is correct. Done.
|
| scheduleMicrotask(() { |
| valueHandler(499); |
| }); |
| + return null; |
| } |
| catchError(_, {test}) => null; |