| Index: sdk/lib/io/platform_impl.dart
|
| diff --git a/sdk/lib/io/platform_impl.dart b/sdk/lib/io/platform_impl.dart
|
| index b9bae7849572b90fd9c643abb296a6cb40e50b33..94d67b6224718e1806617edca4465fa7acf4a3ef 100644
|
| --- a/sdk/lib/io/platform_impl.dart
|
| +++ b/sdk/lib/io/platform_impl.dart
|
| @@ -9,6 +9,7 @@ class _Platform {
|
| external static String _pathSeparator();
|
| external static String _operatingSystem();
|
| external static _localHostname();
|
| + external static _executable();
|
| external static _environment();
|
| external static String _version();
|
|
|
| @@ -25,6 +26,8 @@ class _Platform {
|
| }
|
| }
|
|
|
| + static String executable = _executable();
|
| +
|
| static Map<String, String> get environment {
|
| var env = _environment();
|
| if (env is OSError) {
|
|
|