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

Side by Side Diff: CHANGELOG.md

Issue 1947923003: Add APIs for asserting the types of transformers. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Code review changes Created 4 years, 7 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/async.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 ## 1.11.0
2
3 * Add a `typedStreamTransformer()` function. This wraps an untyped
4 `StreamTransformer` with the correct type parameters, and asserts the types of
5 events as they're emitted from the transformed stream.
6
7 * Add a `StreamSinkTransformer.typed()` static method. This wraps an untyped
8 `StreamSinkTransformer` with the correct type parameters, and asserts the
9 types of arguments passed in to the resulting sink.
10
1 ## 1.10.0 11 ## 1.10.0
2 12
3 * Add `DelegatingFuture.typed()`, `DelegatingStreamSubscription.typed()`, 13 * Add `DelegatingFuture.typed()`, `DelegatingStreamSubscription.typed()`,
4 `DelegatingStreamConsumer.typed()`, `DelegatingSink.typed()`, 14 `DelegatingStreamConsumer.typed()`, `DelegatingSink.typed()`,
5 `DelegatingEventSink.typed()`, and `DelegatingStreamSink.typed()` static 15 `DelegatingEventSink.typed()`, and `DelegatingStreamSink.typed()` static
6 methods. These wrap untyped instances of these classes with the correct type 16 methods. These wrap untyped instances of these classes with the correct type
7 parameter, and assert the types of values as they're accessed. 17 parameter, and assert the types of values as they're accessed.
8 18
9 * Add a `DelegatingStream` class. This is behaviorally identical to `StreamView` 19 * Add a `DelegatingStream` class. This is behaviorally identical to `StreamView`
10 from `dart:async`, but it follows this package's naming conventions and 20 from `dart:async`, but it follows this package's naming conventions and
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 - Added a `StreamSplitter` class for splitting a stream into multiple new 128 - Added a `StreamSplitter` class for splitting a stream into multiple new
119 streams. 129 streams.
120 130
121 ## 1.1.1 131 ## 1.1.1
122 132
123 - Updated SDK version constraint to at least 1.9.0. 133 - Updated SDK version constraint to at least 1.9.0.
124 134
125 ## 1.1.0 135 ## 1.1.0
126 136
127 - ChangeLog starts here. 137 - ChangeLog starts here.
OLDNEW
« no previous file with comments | « no previous file | lib/async.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698