Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Unified Diff: sdk/lib/io/platform_impl.dart

Issue 22565003: Make the values of Platform.executable and Platform.script available to all isolates (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..72e92a64c80606db69ca9b1114c3307f65ff14b3 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,11 @@ class _Platform {
}
}
+ static String get executable {
Bill Hesse 2013/08/07 13:39:44 _executable() can never return null. It returns a
Søren Gjesse 2013/08/07 14:37:46 Initially I was expecting to handle NULL, but it c
+ var executable = _executable();
+ return executable != null ? executable : "";
+ }
+
static Map<String, String> get environment {
var env = _environment();
if (env is OSError) {

Powered by Google App Engine
This is Rietveld 408576698