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

Unified Diff: sdk/lib/_internal/pub_generated/test/global/binstubs/utils.dart

Issue 937243002: Revert "Revert "Use native async/await support in pub."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/_internal/pub_generated/test/global/binstubs/utils.dart
diff --git a/sdk/lib/_internal/pub_generated/test/global/binstubs/utils.dart b/sdk/lib/_internal/pub_generated/test/global/binstubs/utils.dart
deleted file mode 100644
index bd2243f4a8c22f5259e328451f4b346094316f5b..0000000000000000000000000000000000000000
--- a/sdk/lib/_internal/pub_generated/test/global/binstubs/utils.dart
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2014, 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.
-
-import 'dart:async';
-import 'dart:io';
-
-import 'package:path/path.dart' as p;
-
-import '../../test_pub.dart';
-
-/// The buildbots do not have the Dart SDK (containing "dart" and "pub") on
-/// their PATH, so we need to spawn the binstub process with a PATH that
-/// explicitly includes it.
-Future<Map> getEnvironment() {
- final completer0 = new Completer();
- scheduleMicrotask(() {
- try {
- var binDir = p.dirname(Platform.executable);
- join0(x0) {
- var separator = x0;
- var path = "${Platform.environment["PATH"]}${separator}${binDir}";
- new Future.value(getPubTestEnvironment()).then((x1) {
- try {
- var environment = x1;
- environment["PATH"] = path;
- completer0.complete(environment);
- } catch (e0, s0) {
- completer0.completeError(e0, s0);
- }
- }, onError: completer0.completeError);
- }
- if (Platform.operatingSystem == "windows") {
- join0(";");
- } else {
- join0(":");
- }
- } catch (e, s) {
- completer0.completeError(e, s);
- }
- });
- return completer0.future;
-}

Powered by Google App Engine
This is Rietveld 408576698