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 accommodate "part of" declarations with a URI string rather than a libra
ry name. |
5 * Removed AST constructors. AST nodes should now be created using `astFactory`,
located in `package:analyzer/dart/ast/standard_ast_factory.dart`. | 5 * Removed AST constructors. AST nodes should now be created using `astFactory`,
located in `package:analyzer/dart/ast/standard_ast_factory.dart`. |
6 | 6 |
7 ## 0.29.0-alpha.0 | 7 ## 0.29.0-alpha.0 |
8 * Removed `Element.docRange`. | 8 * Removed `Element.docRange`. |
9 | 9 |
10 ## 0.28.2-alpha.0 | 10 ## 0.28.2-alpha.0 |
11 * 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. |
12 | 12 |
13 ## 0.28.0-alpha.2 | 13 ## 0.28.0-alpha.2 |
14 * 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. |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 ## 0.22.0 | 168 ## 0.22.0 |
169 | 169 |
170 New API: | 170 New API: |
171 | 171 |
172 * `Source.uri` added. | 172 * `Source.uri` added. |
173 | 173 |
174 Breaking changes: | 174 Breaking changes: |
175 | 175 |
176 * `DartSdk.fromEncoding` replaced with `fromFileUri`. | 176 * `DartSdk.fromEncoding` replaced with `fromFileUri`. |
177 * `Source.resolveRelative` replaced with `resolveRelativeUri`. | 177 * `Source.resolveRelative` replaced with `resolveRelativeUri`. |
OLD | NEW |