| OLD | NEW |
| 1 # 1.1.5 |
| 2 |
| 3 * Optimize `getLine()` in `SourceFile` when repeatedly called. |
| 4 |
| 1 # 1.1.4 | 5 # 1.1.4 |
| 2 | 6 |
| 3 * Eliminated dart2js warning about overriding `==`, but not `hashCode`. | 7 * Eliminated dart2js warning about overriding `==`, but not `hashCode`. |
| 4 | 8 |
| 5 # 1.1.3 | 9 # 1.1.3 |
| 6 | 10 |
| 7 * `FileSpan.compareTo`, `FileSpan.==`, `FileSpan.union`, and `FileSpan.expand` | 11 * `FileSpan.compareTo`, `FileSpan.==`, `FileSpan.union`, and `FileSpan.expand` |
| 8 no longer throw exceptions for external implementations of `FileSpan`. | 12 no longer throw exceptions for external implementations of `FileSpan`. |
| 9 | 13 |
| 10 * `FileSpan.hashCode` now fully agrees with `FileSpan.==`. | 14 * `FileSpan.hashCode` now fully agrees with `FileSpan.==`. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than | 70 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than |
| 67 taking both a `useColor` and a `color` parameter, they now take a single | 71 taking both a `useColor` and a `color` parameter, they now take a single |
| 68 `color` parameter that controls both whether and which color is used. | 72 `color` parameter that controls both whether and which color is used. |
| 69 | 73 |
| 70 * `Span.isIdentifier` has been removed. This property doesn't make sense outside | 74 * `Span.isIdentifier` has been removed. This property doesn't make sense outside |
| 71 of a source map context. | 75 of a source map context. |
| 72 | 76 |
| 73 * `SourceFileSegment` has been removed. This class wasn't widely used and was | 77 * `SourceFileSegment` has been removed. This class wasn't widely used and was |
| 74 inconsistent in its choice of which parameters were considered relative and | 78 inconsistent in its choice of which parameters were considered relative and |
| 75 which absolute. | 79 which absolute. |
| OLD | NEW |