Chromium Code Reviews| Index: sdk/lib/async/stream_pipe.dart |
| diff --git a/sdk/lib/async/stream_pipe.dart b/sdk/lib/async/stream_pipe.dart |
| index 895e3313b5189af2b2f7276b99d4ffc30e772d77..d84a5ab2dfa84ac2170e1d61c47378de6390d5ef 100644 |
| --- a/sdk/lib/async/stream_pipe.dart |
| +++ b/sdk/lib/async/stream_pipe.dart |
| @@ -559,7 +559,9 @@ class _StreamImplSink<T> implements StreamSink<T> { |
| */ |
| class _StreamEventTransformerImpl<S, T> |
| implements StreamEventTransformer<S, T> { |
| - final _TransformDataHandler<S, T> _handleData; |
| + // TODO(ahe): Restore type when feature is implemented in dart2js |
|
ahe
2013/01/29 11:00:23
I'm not sure why this TODO has my name on it?
|
| + // checked mode. http://dartbug.com/7733 |
| + final Function /*_TransformDataHandler<S, T>*/ _handleData; |
| final _TransformErrorHandler<T> _handleError; |
| final _TransformDoneHandler<T> _handleDone; |