| Index: sdk/lib/_internal/lib/io_patch.dart
|
| diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart
|
| index 9f3943b1cacb07b42c14cc5cff3c8434fc0a9b54..6aed3a2c6c5eec8d9413efed4346b0acb91153f7 100644
|
| --- a/sdk/lib/_internal/lib/io_patch.dart
|
| +++ b/sdk/lib/_internal/lib/io_patch.dart
|
| @@ -210,6 +210,18 @@ patch class Process {
|
| Encoding stderrEncoding: Encoding.SYSTEM}) {
|
| throw new UnsupportedError("Process.run");
|
| }
|
| +
|
| + patch static ProcessResult runSync(
|
| + String executable,
|
| + List<String> arguments,
|
| + {String workingDirectory,
|
| + Map<String, String> environment,
|
| + bool includeParentEnvironment: true,
|
| + bool runInShell: false,
|
| + Encoding stdoutEncoding: Encoding.SYSTEM,
|
| + Encoding stderrEncoding: Encoding.SYSTEM}) {
|
| + throw new UnsupportedError("Process.runSync");
|
| + }
|
| }
|
|
|
| patch class InternetAddress {
|
|
|