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

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

Issue 557563002: Store the async-await compiled pub code directly in the repo. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
new file mode 100644
index 0000000000000000000000000000000000000000..fde39fe26bcef63b10aca84bc8dd4a8b41b4c14a
--- /dev/null
+++ b/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
@@ -0,0 +1,58 @@
+library pub.command.upgrade;
+import 'dart:async';
+import '../command.dart';
+import '../log.dart' as log;
+import '../solver/version_solver.dart';
+class UpgradeCommand extends PubCommand {
+ String get description =>
+ "Upgrade the current package's dependencies to latest versions.";
+ String get usage => "pub upgrade [dependencies...]";
+ 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(() {
+ try {
+ var dryRun = commandOptions['dry-run'];
+ entrypoint.acquireDependencies(
+ SolveType.UPGRADE,
+ useLatest: commandOptions.rest,
+ dryRun: dryRun).then((x0) {
+ try {
+ x0;
+ join0() {
+ completer0.complete(null);
+ }
+ if (isOffline) {
+ log.warning(
+ "Warning: Upgrading when offline may not update you to the "
+ "latest versions of your dependencies.");
+ join0();
+ } else {
+ join0();
+ }
+ } catch (e0) {
+ completer0.completeError(e0);
+ }
+ }, onError: (e1) {
+ completer0.completeError(e1);
+ });
+ } catch (e2) {
+ completer0.completeError(e2);
+ }
+ });
+ return completer0.future;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698