| OLD | NEW |
| 1 ## 0.26.0-alpha.2 |
| 2 |
| 3 * Fix highlight range for missing enum constant in switch (issue 23904). |
| 4 * Fix analyzer's treatment of `ClassName?.staticMember` to match spec. |
| 5 * Implement DEP 34 (less restricted mixins). |
| 6 * Fix some implementations of `UriResolver.resolveUri(..)` that did not |
| 7 properly handle the new `actualUri` argument. |
| 8 |
| 9 ## 0.26.0-alpha.1 |
| 10 |
| 11 * Change `ResolutionCopier.visitAwaitExpression` to copy *Type fields. |
| 12 |
| 1 ## 0.26.0-alpha.0 | 13 ## 0.26.0-alpha.0 |
| 2 | 14 |
| 3 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. | 15 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. |
| 4 | 16 |
| 5 ## 0.25.3-alpha.0 | 17 ## 0.25.3-alpha.0 |
| 6 | 18 |
| 7 * Add hook for listening to implicitly analyzed files | 19 * Add hook for listening to implicitly analyzed files |
| 8 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid | 20 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid |
| 9 clients in excluding files from analysis when directed to do so by an | 21 clients in excluding files from analysis when directed to do so by an |
| 10 options file. | 22 options file. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 ## 0.22.0 | 57 ## 0.22.0 |
| 46 | 58 |
| 47 New API: | 59 New API: |
| 48 | 60 |
| 49 * `Source.uri` added. | 61 * `Source.uri` added. |
| 50 | 62 |
| 51 Breaking changes: | 63 Breaking changes: |
| 52 | 64 |
| 53 * `DartSdk.fromEncoding` replaced with `fromFileUri`. | 65 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
| 54 * `Source.resolveRelative` replaced with `resolveRelativeUri`. | 66 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
| OLD | NEW |