OLD | NEW |
| 1 ## 1.5.1 |
| 2 |
| 3 * Fix a crash in `Chain.foldFrames()` and `Chain.terse` when one of the chain's |
| 4 traces has no frames. |
| 5 |
1 ## 1.5.0 | 6 ## 1.5.0 |
2 | 7 |
3 * `new Chain.parse()` now parses all the stack trace formats supported by `new | 8 * `new Chain.parse()` now parses all the stack trace formats supported by `new |
4 Trace.parse()`. Formats other than that emitted by `Chain.toString()` will | 9 Trace.parse()`. Formats other than that emitted by `Chain.toString()` will |
5 produce single-element chains. | 10 produce single-element chains. |
6 | 11 |
7 * `new Trace.parse()` now parses the output of `Chain.toString()`. It produces | 12 * `new Trace.parse()` now parses the output of `Chain.toString()`. It produces |
8 the same result as `Chain.parse().toTrace()`. | 13 the same result as `Chain.parse().toTrace()`. |
9 | 14 |
10 ## 1.4.2 | 15 ## 1.4.2 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 | 150 |
146 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is | 151 * If an error is thrown in `Chain.capture`'s `onError` handler, that error is |
147 handled by the parent zone. This matches the behavior of `runZoned` in | 152 handled by the parent zone. This matches the behavior of `runZoned` in |
148 `dart:async`. | 153 `dart:async`. |
149 | 154 |
150 ## 0.9.3 | 155 ## 0.9.3 |
151 | 156 |
152 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. | 157 * Add a `Chain.foldFrames` method that parallels `Trace.foldFrames`. |
153 | 158 |
154 * Record anonymous method frames in IE10 as "<fn>". | 159 * Record anonymous method frames in IE10 as "<fn>". |
OLD | NEW |