Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # changelog | |
| 2 | |
| 3 This file contains highlights of what changes on each version of the | |
| 4 polymer_expressions package. | |
| 5 | |
| 6 #### Pub version 0.10.0-dev | |
|
Siggi Cherem (dart-lang)
2014/03/21 01:43:46
anything else to add here?
- I used to have a com
| |
| 7 * package:polymer_expressions no longer declares @MirrosUsed. The package uses | |
| 8 mirrors at development time, but assumes frameworks like polymer will | |
| 9 generate code that replaces the use of mirrors. If you use this directly, | |
| 10 you might need to do code generation as well, or add the @MirrorsUsed | |
| 11 declaration. This can be done either explicitly or by importing the old | |
| 12 settings from 'package:observe/mirrors_used.dart' (which include | |
| 13 @reflectable and @observable by default). | |
| 14 | |
| 15 * Errors that occur within bindings are now thrown asycnhronously. We used to | |
|
Jennifer Messerly
2014/03/21 20:08:54
can this same change be made to PathObserver/Prope
Siggi Cherem (dart-lang)
2014/03/21 21:09:47
It's not done already, but I can look into it. Is
Jennifer Messerly
2014/03/22 00:37:56
sure :)
| |
| 16 trap some errors and report them in a Logger, and we would let other errors | |
| 17 halt the rendering process. Now all errors are caught, but they are reported | |
| 18 asynchornously so they are visible even when logging is not set up. | |
| OLD | NEW |