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

Unified Diff: runtime/bin/platform_impl.dart

Issue 11337019: Use patching for dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years, 2 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: runtime/bin/platform_impl.dart
diff --git a/runtime/bin/platform_impl.dart b/runtime/bin/platform_impl.dart
deleted file mode 100644
index 8949f794b61c7a5a7afb203c080573bd31b9341e..0000000000000000000000000000000000000000
--- a/runtime/bin/platform_impl.dart
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-class _Platform {
- static int _numberOfProcessors() native "Platform_NumberOfProcessors";
- static String _pathSeparator() native "Platform_PathSeparator";
- static String _operatingSystem() native "Platform_OperatingSystem";
- static _localHostname() native "Platform_LocalHostname";
- static _environment() native "Platform_Environment";
-
- static int get numberOfProcessors {
- return _numberOfProcessors();
- }
-
- static String get pathSeparator {
- return _pathSeparator();
- }
-
- static String get operatingSystem {
- return _operatingSystem();
- }
-
- static String get localHostname {
- var result = _localHostname();
- if (result is OSError) {
- throw result;
- } else {
- return result;
- }
- }
-
- static Map<String, String> get environment {
- var env = _environment();
- if (env is OSError) {
- throw env;
- } else {
- var result = new Map();
- for (var str in env) {
- // When running on Windows through cmd.exe there are strange
- // environment variables that are used to record the current
- // working directory for each drive and the exit code for the
- // last command. As an example: '=A:=A:\subdir' records the
- // current working directory on the 'A' drive. In order to
- // handle these correctly we search for a second occurrence of
- // of '=' in the string if the first occurrence is at index 0.
- var equalsIndex = str.indexOf('=');
- if (equalsIndex == 0) {
- equalsIndex = str.indexOf('=', 1);
- }
- assert(equalsIndex != -1);
- result[str.substring(0, equalsIndex)] = str.substring(equalsIndex + 1);
- }
- return result;
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698