OLD | NEW |
1 ## 0.30.0-alpha.0 | 1 ## 0.30.0-alpha.0 |
2 * Changed the API for creating BazelWorkspace. It should now be constructed usi
ng BazelWorkspace.find(). Note that this might return `null` in the event that
the given path is not part of a BazelWorkspace. | 2 * Changed the API for creating BazelWorkspace. It should now be constructed usi
ng BazelWorkspace.find(). Note that this might return `null` in the event that
the given path is not part of a BazelWorkspace. |
3 * Added an AST structure to support asserts in constructor initializers (AssertI
nitializer). AstVisitor classes must now implement visitAssertInitializer(). | 3 * Added an AST structure to support asserts in constructor initializers (AssertI
nitializer). AstVisitor classes must now implement visitAssertInitializer(). |
4 * Changed the API for creating PartOfDirective. It now accepts a StringLiteral
URI, to accomodate "part of" declarations with a URI string rather than a librar
y name. | 4 * Changed the API for creating PartOfDirective. It now accepts a StringLiteral
URI, to accomodate "part of" declarations with a URI string rather than a librar
y name. |
| 5 * Removed AST constructors. AST nodes should now be created using `astFactory`,
located in `package:analyzer/dart/ast/standard_ast_factory.dart`. |
5 | 6 |
6 ## 0.29.0-alpha.0 | 7 ## 0.29.0-alpha.0 |
7 * Removed `Element.docRange`. | 8 * Removed `Element.docRange`. |
8 | 9 |
9 ## 0.28.2-alpha.0 | 10 ## 0.28.2-alpha.0 |
10 * Corresponds with the analyzer/server in the `1.20.0-dev.1.0 ` SDK. | 11 * Corresponds with the analyzer/server in the `1.20.0-dev.1.0 ` SDK. |
11 | 12 |
12 ## 0.28.0-alpha.2 | 13 ## 0.28.0-alpha.2 |
13 * Fixed PubSummaryManager linking when a listed package does not have the unlink
ed bundle. | 14 * Fixed PubSummaryManager linking when a listed package does not have the unlink
ed bundle. |
14 | 15 |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 ## 0.22.0 | 168 ## 0.22.0 |
168 | 169 |
169 New API: | 170 New API: |
170 | 171 |
171 * `Source.uri` added. | 172 * `Source.uri` added. |
172 | 173 |
173 Breaking changes: | 174 Breaking changes: |
174 | 175 |
175 * `DartSdk.fromEncoding` replaced with `fromFileUri`. | 176 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
176 * `Source.resolveRelative` replaced with `resolveRelativeUri`. | 177 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
OLD | NEW |