| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 import 'package:unittest/unittest.dart'; | 5 import 'package:unittest/unittest.dart'; |
| 6 | 6 |
| 7 thrower() async { | 7 thrower() async { |
| 8 throw 'oops'; | 8 throw 'oops'; |
| 9 } | 9 } |
| 10 | 10 |
| 11 number() async { | 11 number() async { |
| 12 return 4; | 12 return 4; |
| 13 } | 13 } |
| 14 | 14 |
| 15 generator() async* { | 15 generator() async* { |
| 16 yield await number(); | 16 yield await number(); |
| 17 yield await thrower(); | 17 yield await thrower(); |
| 18 } | 18 } |
| 19 | 19 |
| 20 foo() async { | 20 foo() async { |
| 21 await for (var i in generator()) { | 21 await for (var i in generator()) { |
| 22 print(i); | 22 print(i); |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 | 25 |
| 26 main() async { | 26 main() async { |
| 27 // Test async and async*. |
| 27 try { | 28 try { |
| 28 await foo(); | 29 await foo(); |
| 29 } catch (e, st) { | 30 } catch (e, st) { |
| 30 expect(st.toString(), stringContainsInOrder([ | 31 expect(st.toString(), stringContainsInOrder([ |
| 31 'thrower.<thrower_async_body>', | |
| 32 '<asynchronous suspension>', | |
| 33 'thrower', | 32 'thrower', |
| 34 'generator.<generator_async_gen_body>', | |
| 35 '<asynchronous suspension>', | 33 '<asynchronous suspension>', |
| 36 'generator', | 34 'generator', |
| 37 'foo.<foo_async_body>', | |
| 38 '<asynchronous suspension>', | 35 '<asynchronous suspension>', |
| 36 'foo', |
| 37 '<asynchronous suspension>', |
| 38 'main', |
| 39 ])); | 39 ])); |
| 40 } | 40 } |
| 41 |
| 42 inner() async { |
| 43 deep() async { |
| 44 await thrower(); |
| 45 } |
| 46 await deep(); |
| 47 } |
| 48 |
| 49 // Test inner functions. |
| 50 try { |
| 51 await inner(); |
| 52 } catch (e, st) { |
| 53 expect(st.toString(), stringContainsInOrder([ |
| 54 'thrower', |
| 55 '<asynchronous suspension>', |
| 56 'main.inner.deep', |
| 57 '<asynchronous suspension>', |
| 58 'main.inner', |
| 59 '<asynchronous suspension>', |
| 60 'main', |
| 61 '<asynchronous suspension>', |
| 62 ])); |
| 63 } |
| 64 |
| 65 // Test for correct linkage. |
| 66 try { |
| 67 await thrower(); |
| 68 } catch(e, st) { |
| 69 expect(st.toString(), stringContainsInOrder([ |
| 70 'thrower', |
| 71 '<asynchronous suspension>', |
| 72 'main', |
| 73 ])); |
| 74 } |
| 41 } | 75 } |
| OLD | NEW |