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

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

Issue 805393002: Update pub to use the new command runner API in args. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 5 years, 11 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 92bf32a548dbcd1cab024888a75bea58be579417..e7f21597b56d5fac06cc38edcf2837c37d960948 100644
--- a/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
+++ b/sdk/lib/_internal/pub_generated/lib/src/command/upgrade.dart
@@ -12,36 +12,36 @@ import '../solver/version_solver.dart';
/// Handles the `upgrade` pub command.
class UpgradeCommand extends PubCommand {
+ String get name => "upgrade";
String get description =>
"Upgrade the current package's dependencies to latest versions.";
- String get usage => "pub upgrade [dependencies...]";
+ String get invocation => "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'];
+ bool get isOffline => argResults['offline'];
UpgradeCommand() {
- commandParser.addFlag(
+ argParser.addFlag(
'offline',
help: 'Use cached packages instead of accessing the network.');
- commandParser.addFlag(
+ argParser.addFlag(
'dry-run',
abbr: 'n',
negatable: false,
help: "Report what dependencies would change but don't change any.");
}
- Future onRun() {
+ Future run() {
final completer0 = new Completer();
scheduleMicrotask(() {
try {
- var dryRun = commandOptions['dry-run'];
+ var dryRun = argResults['dry-run'];
new Future.value(
entrypoint.acquireDependencies(
SolveType.UPGRADE,
- useLatest: commandOptions.rest,
+ useLatest: argResults.rest,
dryRun: dryRun)).then((x0) {
try {
x0;

Powered by Google App Engine
This is Rietveld 408576698