| Index: runtime/bin/stream_util.dart
|
| diff --git a/runtime/bin/stream_util.dart b/runtime/bin/stream_util.dart
|
| index 886cc8e4dade4b41645a5573fa13aee23f3a3b1e..48039e1e92debc47052e769203ea5af39b5809c4 100644
|
| --- a/runtime/bin/stream_util.dart
|
| +++ b/runtime/bin/stream_util.dart
|
| @@ -31,6 +31,10 @@ class _BaseDataInputStream {
|
| return _readInto(buffer, offset, bytesToRead);
|
| }
|
|
|
| + void pipe(OutputStream output, [bool close = true]) {
|
| + _pipe(this, output, close: close);
|
| + }
|
| +
|
| bool get closed() => _closeCallbackCalled;
|
|
|
| void set dataHandler(void callback()) {
|
| @@ -90,8 +94,8 @@ class _BaseDataInputStream {
|
|
|
| Timer _scheduledDataCallback;
|
| Timer _scheduledCloseCallback;
|
| - var _clientDataHandler;
|
| - var _clientCloseHandler;
|
| + Function _clientDataHandler;
|
| + Function _clientCloseHandler;
|
| }
|
|
|
|
|
|
|