Added 1.13 changelog entries for changes in dart:async

Helps with https://github.com/dart-lang/sdk/issues/24474

R=lrn@google.com

Review URL: https://codereview.chromium.org/1417983005 .
This commit is contained in:
Kevin Moore 2015-10-29 14:57:10 -07:00
parent baaee47bd8
commit 4627a8e916

View file

@ -10,6 +10,10 @@
### Core library changes
* `dart:async`
* `StreamController` added getters for `onListen`, `onPause`, and `onResume`
with the corresponding new `typedef void ControllerCallback()`.
* `StreamController` added a getter for `onCancel` with the corresponding
new `typedef ControllerCancelCallback()`;
* `StreamTransformer` instances created with `fromHandlers` with no
`handleError` callback now forward stack traces along with errors to the
resulting streams.