| OLD | NEW |
| 1 # 1.0.3 |
| 2 |
| 3 * Cleanup equality operator to accept any Object rather than just a |
| 4 `SourceLocation`. |
| 5 |
| 1 # 1.0.2 | 6 # 1.0.2 |
| 2 | 7 |
| 3 * Avoid unintentionally allocating extra objects for internal `FileSpan` | 8 * Avoid unintentionally allocating extra objects for internal `FileSpan` |
| 4 operations. | 9 operations. |
| 5 | 10 |
| 6 * Ensure that `SourceSpan.operator==` works on arbitrary `Object`s. | 11 * Ensure that `SourceSpan.operator==` works on arbitrary `Object`s. |
| 7 | 12 |
| 8 # 1.0.1 | 13 # 1.0.1 |
| 9 | 14 |
| 10 * Use a more compact internal representation for `FileSpan`. | 15 * Use a more compact internal representation for `FileSpan`. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than | 40 `SourceSpan.message` and `SourceFile.message`, respectively. Rather than |
| 36 taking both a `useColor` and a `color` parameter, they now take a single | 41 taking both a `useColor` and a `color` parameter, they now take a single |
| 37 `color` parameter that controls both whether and which color is used. | 42 `color` parameter that controls both whether and which color is used. |
| 38 | 43 |
| 39 * `Span.isIdentifier` has been removed. This property doesn't make sense outside | 44 * `Span.isIdentifier` has been removed. This property doesn't make sense outside |
| 40 of a source map context. | 45 of a source map context. |
| 41 | 46 |
| 42 * `SourceFileSegment` has been removed. This class wasn't widely used and was | 47 * `SourceFileSegment` has been removed. This class wasn't widely used and was |
| 43 inconsistent in its choice of which parameters were considered relative and | 48 inconsistent in its choice of which parameters were considered relative and |
| 44 which absolute. | 49 which absolute. |
| OLD | NEW |