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

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

Issue 1180623006: Revert change to Platform.excutable and add Platform.resolvedExecutable (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated dart2js io_patch.dart Created 5 years, 6 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
« no previous file with comments | « sdk/lib/io/platform.dart ('k') | tests/standalone/io/platform_executable_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/platform_impl.dart
diff --git a/sdk/lib/io/platform_impl.dart b/sdk/lib/io/platform_impl.dart
index 3883957ef0d8129db4a47323b5f8ffd7a0038a81..6380e0d7c92f622495d3c9ca2149db2baafdfda9 100644
--- a/sdk/lib/io/platform_impl.dart
+++ b/sdk/lib/io/platform_impl.dart
@@ -10,6 +10,7 @@ class _Platform {
external static String _operatingSystem();
external static _localHostname();
external static _executable();
+ external static _resolvedExecutable();
/**
* Retrieve the entries of the process environment.
*
@@ -31,6 +32,7 @@ class _Platform {
external static String _version();
static String executable = _executable();
+ static String resolvedExecutable = _resolvedExecutable();
static String packageRoot = _packageRoot();
// Cache the OS environemnt. This can be an OSError instance if
« no previous file with comments | « sdk/lib/io/platform.dart ('k') | tests/standalone/io/platform_executable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698