| OLD | NEW |
| 1 ## 1.1.3 |
| 2 |
| 3 * Produce nicer-looking stack chains when using the VM's async/await |
| 4 implementation. |
| 5 |
| 1 ## 1.1.2 | 6 ## 1.1.2 |
| 2 | 7 |
| 3 * Support VM frames without line *or* column numbers, which async/await programs | 8 * Support VM frames without line *or* column numbers, which async/await programs |
| 4 occasionally generate. | 9 occasionally generate. |
| 5 | 10 |
| 6 * Replace `<<anonymous closure>_async_body>` in VM frames' members with the | 11 * Replace `<<anonymous closure>_async_body>` in VM frames' members with the |
| 7 terser `<async>`. | 12 terser `<async>`. |
| 8 | 13 |
| 9 ## 1.1.1 | 14 ## 1.1.1 |
| 10 | 15 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 54 |
| 50 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 55 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
| 51 handled by the parent zone. This matches the behavior of `runZoned` in | 56 handled by the parent zone. This matches the behavior of `runZoned` in |
| 52 `dart:async`. | 57 `dart:async`. |
| 53 | 58 |
| 54 ## 0.9.3 | 59 ## 0.9.3 |
| 55 | 60 |
| 56 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 61 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
| 57 | 62 |
| 58 * Record anonymous method frames in IE10 as "<fn>". | 63 * Record anonymous method frames in IE10 as "<fn>". |
| OLD | NEW |