| OLD | NEW |
| 1 ## 0.1.4+1 |
| 2 |
| 3 * Remove the dependency on `path`, since we don't actually import it. |
| 4 |
| 1 ## 0.1.4 | 5 ## 0.1.4 |
| 2 | 6 |
| 3 * Add `new SpanScanner.eager()` for creating a `SpanScanner` that eagerly | 7 * Add `new SpanScanner.eager()` for creating a `SpanScanner` that eagerly |
| 4 computes its current line and column numbers. | 8 computes its current line and column numbers. |
| 5 | 9 |
| 6 ## 0.1.3+2 | 10 ## 0.1.3+2 |
| 7 | 11 |
| 8 * Fix `LineScanner`'s handling of carriage returns to match that of | 12 * Fix `LineScanner`'s handling of carriage returns to match that of |
| 9 `SpanScanner`. | 13 `SpanScanner`. |
| 10 | 14 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 access to information about the errors that were thrown and can provide | 65 access to information about the errors that were thrown and can provide |
| 62 terminal-colored messages. | 66 terminal-colored messages. |
| 63 | 67 |
| 64 * Add a `LineScanner` subclass of `StringScanner` that automatically tracks line | 68 * Add a `LineScanner` subclass of `StringScanner` that automatically tracks line |
| 65 and column information of the text being scanned. | 69 and column information of the text being scanned. |
| 66 | 70 |
| 67 * Add a `SpanScanner` subclass of `LineScanner` that exposes matched ranges as | 71 * Add a `SpanScanner` subclass of `LineScanner` that exposes matched ranges as |
| 68 [source map][] `Span` objects. | 72 [source map][] `Span` objects. |
| 69 | 73 |
| 70 [source_map]: http://pub.dartlang.org/packages/source_maps | 74 [source_map]: http://pub.dartlang.org/packages/source_maps |
| OLD | NEW |