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 // This test may crash dart2js. | 5 // This test may crash dart2js. |
6 | 6 |
7 import "dart:async"; | 7 import "dart:async"; |
8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
9 import "package:async_helper/async_helper.dart"; | 9 import "package:async_helper/async_helper.dart"; |
10 | 10 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "done", | 50 "done", |
51 "fisk 1", | 51 "fisk 1", |
52 "+fisk", | 52 "+fisk", |
53 0, | 53 0, |
54 "-fisk", | 54 "-fisk", |
55 "done" | 55 "done" |
56 ], res); | 56 ], res); |
57 asyncEnd(); | 57 asyncEnd(); |
58 }); | 58 }); |
59 } | 59 } |
OLD | NEW |