| Index: runtime/bin/process_impl.dart
|
| diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
|
| index 1016cb7015ae61966b4062ee9a17d88315e10b60..7c3728770085616019b5aaa24c24ead9e566e978 100644
|
| --- a/runtime/bin/process_impl.dart
|
| +++ b/runtime/bin/process_impl.dart
|
| @@ -200,21 +200,21 @@ class _Process extends Process {
|
| Socket exitHandler,
|
| _ProcessStartStatus status) native "Process_Start";
|
|
|
| - InputStream get stdout() {
|
| + InputStream get stdout {
|
| if (_closed) {
|
| throw new ProcessException("Process closed");
|
| }
|
| return _in.inputStream;
|
| }
|
|
|
| - InputStream get stderr() {
|
| + InputStream get stderr {
|
| if (_closed) {
|
| throw new ProcessException("Process closed");
|
| }
|
| return _err.inputStream;
|
| }
|
|
|
| - OutputStream get stdin() {
|
| + OutputStream get stdin {
|
| if (_closed) {
|
| throw new ProcessException("Process closed");
|
| }
|
| @@ -376,7 +376,7 @@ class _NonInteractiveProcess {
|
| }
|
| }
|
|
|
| - Future<ProcessResult> get _result() => _completer.future;
|
| + Future<ProcessResult> get _result => _completer.future;
|
|
|
| Completer<ProcessResult> _completer;
|
| Process _process;
|
|
|