| Index: sdk/lib/io/process.dart
|
| diff --git a/sdk/lib/io/process.dart b/sdk/lib/io/process.dart
|
| index 808bce517dadd9e568c6d09a7d5bb20fb647c359..9ff803d06250952258f1eec777bf21067323099c 100644
|
| --- a/sdk/lib/io/process.dart
|
| +++ b/sdk/lib/io/process.dart
|
| @@ -200,14 +200,20 @@ abstract class ProcessResult {
|
| int get exitCode;
|
|
|
| /**
|
| - * Standard output from the process as a string.
|
| + * Standard output from the process. The value used for the
|
| + * `stdoutEncoding` argument to `Process.run` determins the type. If
|
| + * `Encoding.BINARY` was used this value is of type `List<int>
|
| + * otherwise it is of type `String`.
|
| */
|
| - String get stdout;
|
| + get stdout;
|
|
|
| /**
|
| - * Standard error from the process as a string.
|
| + * Standard error from the process. The value used for the
|
| + * `stderrEncoding` argument to `Process.run` determins the type. If
|
| + * `Encoding.BINARY` was used this value is of type `List<int>
|
| + * otherwise it is of type `String`.
|
| */
|
| - String get stderr;
|
| + get stderr;
|
|
|
| /**
|
| * Process id from the process.
|
|
|