| Index: runtime/bin/process_impl.dart
|
| diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
|
| index dc1f94524fc08f3e1187abd2d6e3621e7b108425..cbbc3879a4a48e40c8babb1867e6d2da817dcf79 100644
|
| --- a/runtime/bin/process_impl.dart
|
| +++ b/runtime/bin/process_impl.dart
|
| @@ -10,8 +10,8 @@ class _ProcessStartStatus {
|
|
|
| class _Process implements Process {
|
|
|
| - _Process.start(String path,
|
| - List<String> arguments,
|
| + _Process.start(String path,
|
| + List<String> arguments,
|
| [String workingDirectory]) {
|
| if (path is !String) {
|
| throw new ProcessException("Path is not a String: $path");
|
| @@ -59,13 +59,13 @@ class _Process implements Process {
|
|
|
| void start() {
|
| var status = new _ProcessStartStatus();
|
| - bool success = _start(_path,
|
| - _arguments,
|
| - _workingDirectory,
|
| - _in,
|
| - _out,
|
| - _err,
|
| - _exitHandler,
|
| + bool success = _start(_path,
|
| + _arguments,
|
| + _workingDirectory,
|
| + _in,
|
| + _out,
|
| + _err,
|
| + _exitHandler,
|
| status);
|
| if (!success) {
|
| close();
|
|
|