| Index: runtime/bin/list_stream_impl.dart
|
| diff --git a/runtime/bin/list_stream_impl.dart b/runtime/bin/list_stream_impl.dart
|
| index 3a4b7ec5a327144374382d2e75f4ca0fbc7ba206..91d57256b649d2a20487a790a6cf22ec68971cb3 100644
|
| --- a/runtime/bin/list_stream_impl.dart
|
| +++ b/runtime/bin/list_stream_impl.dart
|
| @@ -64,6 +64,10 @@ class _ListOutputStream extends _BaseOutputStream implements ListOutputStream {
|
| return true;
|
| }
|
|
|
| + void flush() {
|
| + // Nothing to do on a list output stream.
|
| + }
|
| +
|
| void close() {
|
| if (_streamMarkedClosed) throw new StreamException.streamClosed();
|
| _streamMarkedClosed = true;
|
|
|