Chromium Code Reviews| Index: sdk/lib/io/string_transformer.dart |
| diff --git a/sdk/lib/io/string_transformer.dart b/sdk/lib/io/string_transformer.dart |
| index 423a61c39d9da07d26e909d3989d570cfcfed1d3..02df9395764b17369ac16ccbd1325d613164cf18 100644 |
| --- a/sdk/lib/io/string_transformer.dart |
| +++ b/sdk/lib/io/string_transformer.dart |
| @@ -5,6 +5,12 @@ |
| part of dart.io; |
| /// The current system encoding. |
| +/// |
| +/// This us used for converting from bytes to/from String when |
| +/// communicating on stdin/stdout and stderr. |
|
Lasse Reichstein Nielsen
2015/06/23 13:08:50
-> stdin, stdout and stderr.
Søren Gjesse
2015/06/24 07:58:26
Done.
|
| +/// |
| +/// On Windows this will use the currently active code page for the |
| +/// conversion. On all other systems it will always use UTF-8. |
| const SystemEncoding SYSTEM_ENCODING = const SystemEncoding(); |
| /** |