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 issue 23058. | 5 // Regression test for issue 23058. |
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 | 9 |
10 class A { | 10 class A { |
(...skipping 16 matching lines...) Expand all Loading... |
27 } | 27 } |
28 } | 28 } |
29 | 29 |
30 main() { | 30 main() { |
31 asyncStart(); | 31 asyncStart(); |
32 new A().foo().then((result) { | 32 new A().foo().then((result) { |
33 Expect.equals(1, result); | 33 Expect.equals(1, result); |
34 asyncEnd(); | 34 asyncEnd(); |
35 }); | 35 }); |
36 } | 36 } |
OLD | NEW |