Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: CHANGELOG.md

Issue 888943002: added plugin transformer which initializers can extend to do additional post-processing during tran… (Closed) Base URL: git@github.com:dart-lang/static-init.git@master
Patch Set: update pubspec/changelog Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | lib/plugin_transformer.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 0.3.1-dev
2
3 * Added `InitializePluginTransformer` class in `plugin_transformer.dart` which
4 provides a base transformer class which can be extended to perform custom
5 transformations for annotations. These transformers should be included after the
6 main `initialize` transformer and work by parsing the bootstrap file so the
7 program doesn't need to be re-analyzed.
8
1 ## 0.3.0 9 ## 0.3.0
2 10
3 * Library initializers now pass a `LibraryIdentifier` to `initialize` instead of 11 * Library initializers now pass a `LibraryIdentifier` to `initialize` instead of
4 just a `Symbol`. This provides the package and path to the library in addition 12 just a `Symbol`. This provides the package and path to the library in addition
5 to the symbol so that paths can be normalized. 13 to the symbol so that paths can be normalized.
6 14
7 ## 0.2.0 15 ## 0.2.0
8 16
9 * `entryPoint` and `newEntryPoint` transformer options were renamed to 17 * `entryPoint` and `newEntryPoint` transformer options were renamed to
10 `entry_point` and `new_entry_pont`. 18 `entry_point` and `new_entry_pont`.
11 19
12 * Added `html_entry_point` option to the transformer. This will search that file 20 * Added `html_entry_point` option to the transformer. This will search that file
13 for any script tag whose src is `entry_point` and rewrite it to point at the 21 for any script tag whose src is `entry_point` and rewrite it to point at the
14 bootstrapped file `new_entry_point`. 22 bootstrapped file `new_entry_point`.
15 23
16 * Top level properties and static class properties are now supported in 24 * Top level properties and static class properties are now supported in
17 initializer constructors, as well as List and Map literals, 25 initializer constructors, as well as List and Map literals,
18 [5](https://github.com/dart-lang/initialize/issues/5). 26 [5](https://github.com/dart-lang/initialize/issues/5).
19 27
20 28
21 ## 0.1.0+1 29 ## 0.1.0+1
22 30
23 Quick fix for the transformer on windows. 31 Quick fix for the transformer on windows.
24 32
25 ## 0.1.0 33 ## 0.1.0
26 34
27 Initial beta release. There is one notable missing feature in the release 35 Initial beta release. There is one notable missing feature in the release
28 regarding constructor arguments, see 36 regarding constructor arguments, see
29 [5](https://github.com/dart-lang/initialize/issues/5). 37 [5](https://github.com/dart-lang/initialize/issues/5).
OLDNEW
« no previous file with comments | « no previous file | lib/plugin_transformer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698