Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // Regression test for https://code.google.com/p/dart/issues/detail?id=23116 | |
| 6 | |
| 7 import "package:expect/expect.dart"; | |
| 8 import "package:async_helper/async_helper.dart"; | |
| 9 import 'dart:async'; | |
| 10 | |
| 11 Stream<int> foo(Completer completer, Future future) async* { | |
| 12 completer.complete(100); | |
| 13 int x = await future; | |
| 14 Expect.equals(42, x); | |
| 15 } | |
| 16 | |
| 17 test() async { | |
| 18 Completer completer1 = new Completer(); | |
| 19 Completer completer2 = new Completer(); | |
| 20 StreamSubscription s = foo(completer1, completer2.future).listen((v) => null); | |
| 21 await completer1.future; | |
| 22 // Now foo will be waiting future. | |
|
floitsch
2015/04/08 14:01:25
// At this moment foo is waiting on the given futu
sigurdm
2015/04/08 14:07:40
Done.
| |
| 23 s.pause(); | |
| 24 // Ensure that execution of foo is not resumed - future is not completed yet. | |
|
floitsch
2015/04/08 14:01:25
the future
sigurdm
2015/04/08 14:07:40
Done.
| |
| 25 s.resume(); | |
| 26 completer2.complete(42); | |
| 27 } | |
| 28 | |
| 29 main() { | |
| 30 asyncStart(); | |
| 31 test().then((_) => asyncEnd()); | |
| 32 } | |
| OLD | NEW |