| Index: sdk/lib/async/stream_pipe.dart
|
| diff --git a/sdk/lib/async/stream_pipe.dart b/sdk/lib/async/stream_pipe.dart
|
| index 9438452c14dbd41e61842077e514167c8a19c5f1..7436b925dd918ec6b98988a66654827d688dc335 100644
|
| --- a/sdk/lib/async/stream_pipe.dart
|
| +++ b/sdk/lib/async/stream_pipe.dart
|
| @@ -140,9 +140,7 @@ class _ForwardingStreamSubscription<S, T>
|
|
|
| // Methods used as listener on source subscription.
|
|
|
| - // TODO(ahe): Restore type when feature is implemented in dart2js
|
| - // checked mode. http://dartbug.com/7733
|
| - void _handleData(/*S*/ data) {
|
| + void _handleData(S data) {
|
| _stream._handleData(data, this);
|
| }
|
|
|
| @@ -431,9 +429,7 @@ void _defaultHandleDone(EventSink sink) {
|
| * [StreamEventTransformer].
|
| */
|
| class _StreamTransformerImpl<S, T> extends StreamEventTransformer<S, T> {
|
| - // TODO(ahe): Restore type when feature is implemented in dart2js
|
| - // checked mode. http://dartbug.com/7733
|
| - final Function /*_TransformDataHandler<S, T>*/ _handleData;
|
| + final _TransformDataHandler<S, T> _handleData;
|
| final _TransformErrorHandler<T> _handleError;
|
| final _TransformDoneHandler<T> _handleDone;
|
|
|
|
|