| Index: sdk/lib/async/stream_pipe.dart
|
| diff --git a/sdk/lib/async/stream_pipe.dart b/sdk/lib/async/stream_pipe.dart
|
| index 34609924561d0f159ffc7c3595d4616dca61882c..2e0375a4998bdc7716e9a488392e5e979a19b86d 100644
|
| --- a/sdk/lib/async/stream_pipe.dart
|
| +++ b/sdk/lib/async/stream_pipe.dart
|
| @@ -169,7 +169,9 @@ class _ForwardingStreamSubscription<S, T>
|
|
|
| // Methods used as listener on source subscription.
|
|
|
| - void _handleData(S data) {
|
| + // TODO(ahe): Restore type when feature is implemented in dart2js
|
| + // checked mode. http://dartbug.com/7733
|
| + void _handleData(/*S*/ data) {
|
| _stream._handleData(data, this);
|
| }
|
|
|
|
|