| OLD | NEW |
| 1 ## 0.1.3+1 |
| 2 |
| 3 * Fixed the homepage URL. |
| 4 |
| 1 ## 0.1.3 | 5 ## 0.1.3 |
| 2 | 6 |
| 3 * Add an optional `endState` argument to `SpanScanner.spanFrom`. | 7 * Add an optional `endState` argument to `SpanScanner.spanFrom`. |
| 4 | 8 |
| 5 ## 0.1.2 | 9 ## 0.1.2 |
| 6 | 10 |
| 7 * Add `StringScanner.substring`, which returns a substring of the source string. | 11 * Add `StringScanner.substring`, which returns a substring of the source string. |
| 8 | 12 |
| 9 ## 0.1.1 | 13 ## 0.1.1 |
| 10 | 14 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 access to information about the errors that were thrown and can provide | 51 access to information about the errors that were thrown and can provide |
| 48 terminal-colored messages. | 52 terminal-colored messages. |
| 49 | 53 |
| 50 * Add a `LineScanner` subclass of `StringScanner` that automatically tracks line | 54 * Add a `LineScanner` subclass of `StringScanner` that automatically tracks line |
| 51 and column information of the text being scanned. | 55 and column information of the text being scanned. |
| 52 | 56 |
| 53 * Add a `SpanScanner` subclass of `LineScanner` that exposes matched ranges as | 57 * Add a `SpanScanner` subclass of `LineScanner` that exposes matched ranges as |
| 54 [source map][] `Span` objects. | 58 [source map][] `Span` objects. |
| 55 | 59 |
| 56 [source_map]: http://pub.dartlang.org/packages/source_maps | 60 [source_map]: http://pub.dartlang.org/packages/source_maps |
| OLD | NEW |