| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // Regression test for https://code.google.com/p/dart/issues/detail?id=23116 | 5 // Regression test for https://code.google.com/p/dart/issues/detail?id=23116 |
| 6 | 6 |
| 7 import "package:expect/expect.dart"; | 7 import "package:expect/expect.dart"; |
| 8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
| 9 import 'dart:async'; | 9 import 'dart:async'; |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 // Ensure that execution of foo is not resumed - the future is not completed | 24 // Ensure that execution of foo is not resumed - the future is not completed |
| 25 // yet. | 25 // yet. |
| 26 s.resume(); | 26 s.resume(); |
| 27 completer2.complete(42); | 27 completer2.complete(42); |
| 28 } | 28 } |
| 29 | 29 |
| 30 main() { | 30 main() { |
| 31 asyncStart(); | 31 asyncStart(); |
| 32 test().then((_) => asyncEnd()); | 32 test().then((_) => asyncEnd()); |
| 33 } | 33 } |
| OLD | NEW |