| OLD | NEW |
| 1 ## 1.2.0 |
| 2 |
| 3 * Add a `terse` argument to `Trace.foldFrames()` and `Chain.foldFrames()`. This |
| 4 allows them to inherit the behavior of `Trace.terse` and `Chain.terse` without |
| 5 having to duplicate the logic. |
| 6 |
| 1 ## 1.1.3 | 7 ## 1.1.3 |
| 2 | 8 |
| 3 * Produce nicer-looking stack chains when using the VM's async/await | 9 * Produce nicer-looking stack chains when using the VM's async/await |
| 4 implementation. | 10 implementation. |
| 5 | 11 |
| 6 ## 1.1.2 | 12 ## 1.1.2 |
| 7 | 13 |
| 8 * Support VM frames without line *or* column numbers, which async/await programs | 14 * Support VM frames without line *or* column numbers, which async/await programs |
| 9 occasionally generate. | 15 occasionally generate. |
| 10 | 16 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 60 |
| 55 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 61 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
| 56 handled by the parent zone. This matches the behavior of `runZoned` in | 62 handled by the parent zone. This matches the behavior of `runZoned` in |
| 57 `dart:async`. | 63 `dart:async`. |
| 58 | 64 |
| 59 ## 0.9.3 | 65 ## 0.9.3 |
| 60 | 66 |
| 61 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 67 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
| 62 | 68 |
| 63 * Record anonymous method frames in IE10 as "<fn>". | 69 * Record anonymous method frames in IE10 as "<fn>". |
| OLD | NEW |