| Index: lib/compiler/implementation/lib/io.dart
|
| diff --git a/lib/compiler/implementation/lib/io.dart b/lib/compiler/implementation/lib/io.dart
|
| index ee6559f323ee21b47cd04dab41018e3e0d54cb5e..8d544b238cbf8285a84f6178114a03f001a426e0 100644
|
| --- a/lib/compiler/implementation/lib/io.dart
|
| +++ b/lib/compiler/implementation/lib/io.dart
|
| @@ -154,9 +154,9 @@ void _exit(int exitCode) {
|
| }
|
|
|
| class _Process {
|
| - static Process start(String executable,
|
| - List<String> arguments,
|
| - [ProcessOptions options]) {
|
| + static Future<Process> start(String executable,
|
| + List<String> arguments,
|
| + [ProcessOptions options]) {
|
| var msg = 'Process.start($executable, $arguments, $options)';
|
| throw new UnsupportedOperationException(msg);
|
| }
|
|
|