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