OLD | NEW |
| 1 ## 0.26.1 |
| 2 |
| 3 * Fix line starts in multiline comments (issue 23919). |
| 4 * Various small fixes to Windows path handling. |
| 5 * Update LineInfo computation during incremental resolution. |
| 6 * Make exclude list apply to contexts (issue 23941). |
| 7 * Fix type propagation for asynchronous for-in statements. |
| 8 * Fix ToStringVisitor for external functions (issue 23968). |
| 9 * Fix sorting of compilation unit members. |
| 10 * Add forwarding for DefaultFormalParameter metadata. |
| 11 * Fix most implementations of UriResolver.restoreAbsolute. |
| 12 * Disable dart2js hints by default. |
| 13 * Support older SDKs (Dart 1.11). |
| 14 |
1 ## 0.26.0 | 15 ## 0.26.0 |
2 | 16 |
3 * Add hook for listening to implicitly analyzed files | 17 * Add hook for listening to implicitly analyzed files |
4 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid | 18 * Add a PathFilter and AnalysisOptionsProvider utility classes to aid |
5 clients in excluding files from analysis when directed to do so by an | 19 clients in excluding files from analysis when directed to do so by an |
6 options file. | 20 options file. |
7 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. | 21 * API change: `UriResolver.resolveUri(..)` now takes an optional `actualUri`. |
8 * Change `ResolutionCopier.visitAwaitExpression` to copy *Type fields. | 22 * Change `ResolutionCopier.visitAwaitExpression` to copy *Type fields. |
9 * Fix highlight range for missing enum constant in switch (issue 23904). | 23 * Fix highlight range for missing enum constant in switch (issue 23904). |
10 * Fix analyzer's treatment of `ClassName?.staticMember` to match spec. | 24 * Fix analyzer's treatment of `ClassName?.staticMember` to match spec. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 ## 0.22.0 | 62 ## 0.22.0 |
49 | 63 |
50 New API: | 64 New API: |
51 | 65 |
52 * `Source.uri` added. | 66 * `Source.uri` added. |
53 | 67 |
54 Breaking changes: | 68 Breaking changes: |
55 | 69 |
56 * `DartSdk.fromEncoding` replaced with `fromFileUri`. | 70 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
57 * `Source.resolveRelative` replaced with `resolveRelativeUri`. | 71 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
OLD | NEW |