| Index: runtime/bin/process_impl.dart
|
| diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
|
| index 98d72b4811ffc2f630c5209f487e6439854508dc..b121d2cece06d22bdd2004086834d22c20286273 100644
|
| --- a/runtime/bin/process_impl.dart
|
| +++ b/runtime/bin/process_impl.dart
|
| @@ -81,21 +81,21 @@ class _Process implements Process {
|
|
|
| void _processExit(int pid) native "Process_Exit";
|
|
|
| - InputStream get stdoutStream() {
|
| + InputStream get stdout() {
|
| if (_closed) {
|
| throw new ProcessException("Process closed");
|
| }
|
| return _in.inputStream;
|
| }
|
|
|
| - InputStream get stderrStream() {
|
| + InputStream get stderr() {
|
| if (_closed) {
|
| throw new ProcessException("Process closed");
|
| }
|
| return _err.inputStream;
|
| }
|
|
|
| - OutputStream get stdinStream() {
|
| + OutputStream get stdin() {
|
| if (_closed) {
|
| throw new ProcessException("Process closed");
|
| }
|
|
|