| Index: sdk/lib/io/stdio.dart
|
| diff --git a/sdk/lib/io/stdio.dart b/sdk/lib/io/stdio.dart
|
| index 76abe057fe060eb987d6884b03a710f900d2fd81..0865aaee7fd9e59df08a1f6a657e5bbc5ca753e4 100644
|
| --- a/sdk/lib/io/stdio.dart
|
| +++ b/sdk/lib/io/stdio.dart
|
| @@ -166,6 +166,7 @@ class _StdSink implements IOSink {
|
| _sink.addError(error, stackTrace);
|
| void writeCharCode(int charCode) => _sink.writeCharCode(charCode);
|
| Future addStream(Stream<List<int>> stream) => _sink.addStream(stream);
|
| + Future flush() => _sink.flush();
|
| Future close() => _sink.close();
|
| Future get done => _sink.done;
|
| }
|
|
|