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

Unified Diff: sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart

Issue 657673002: Regenerate pub sources. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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: sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
diff --git a/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart b/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
index fde39fe26bcef63b10aca84bc8dd4a8b41b4c14a..bd677193c70241c770f333b40629cfd4768d3b4c 100644
--- a/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
+++ b/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
@@ -1,8 +1,16 @@
+// 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.
+
library pub.command.upgrade;
+
import 'dart:async';
+
import '../command.dart';
import '../log.dart' as log;
import '../solver/version_solver.dart';
+
+/// Handles the `upgrade` pub command.
class UpgradeCommand extends PubCommand {
String get description =>
"Upgrade the current package's dependencies to latest versions.";
@@ -10,17 +18,21 @@ class UpgradeCommand extends PubCommand {
String get docUrl => "http://dartlang.org/tools/pub/cmd/pub-upgrade.html";
List<String> get aliases => const ["update"];
bool get takesArguments => true;
+
bool get isOffline => commandOptions['offline'];
+
UpgradeCommand() {
commandParser.addFlag(
'offline',
help: 'Use cached packages instead of accessing the network.');
+
commandParser.addFlag(
'dry-run',
abbr: 'n',
negatable: false,
help: "Report what dependencies would change but don't change any.");
}
+
Future onRun() {
final completer0 = new Completer();
scheduleMicrotask(() {
@@ -33,7 +45,7 @@ class UpgradeCommand extends PubCommand {
try {
x0;
join0() {
- completer0.complete(null);
+ completer0.complete();
}
if (isOffline) {
log.warning(
@@ -43,14 +55,12 @@ class UpgradeCommand extends PubCommand {
} else {
join0();
}
- } catch (e0) {
- completer0.completeError(e0);
+ } catch (e0, s0) {
+ completer0.completeError(e0, s0);
}
- }, onError: (e1) {
- completer0.completeError(e1);
- });
- } catch (e2) {
- completer0.completeError(e2);
+ }, onError: completer0.completeError);
+ } catch (e, s) {
+ completer0.completeError(e, s);
}
});
return completer0.future;

Powered by Google App Engine
This is Rietveld 408576698