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

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

Issue 1529063006: - Implement Platform.packageRoot and Platform.packageConfig based (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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 6380e0d7c92f622495d3c9ca2149db2baafdfda9..f4d7a247dfa78e0086ff9e91ce6c9e22e7a10106 100644
--- a/sdk/lib/io/platform_impl.dart
+++ b/sdk/lib/io/platform_impl.dart
@@ -29,11 +29,13 @@ class _Platform {
external static _environment();
external static List<String> _executableArguments();
external static String _packageRoot();
+ external static String _packageConfig();
external static String _version();
static String executable = _executable();
static String resolvedExecutable = _resolvedExecutable();
static String packageRoot = _packageRoot();
+ static String packageConfig = _packageConfig();
// Cache the OS environemnt. This can be an OSError instance if
// retrieving the environment failed.

Powered by Google App Engine
This is Rietveld 408576698