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

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

Issue 49453003: Revise unhandled args patch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make command properties consistent. Created 7 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/lib/src/command/upgrade.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/upgrade.dart b/sdk/lib/_internal/pub/lib/src/command/upgrade.dart
index 2f0add7b66f26d51d1c59ee3f19da530f016ae31..306e027cfdf9b30fac4d4177048871aa2b07817a 100644
--- a/sdk/lib/_internal/pub/lib/src/command/upgrade.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/upgrade.dart
@@ -13,9 +13,9 @@ import '../log.dart' as log;
/// Handles the `upgrade` pub command.
class UpgradeCommand extends PubCommand {
String get description =>
- "Upgrade the current package's dependencies to latest versions.";
- String get usage => 'pub upgrade [dependencies...]';
- final aliases = const ["update"];
+ "Upgrade the current package's dependencies to latest versions.";
+ String get usage => "pub upgrade [dependencies...]";
+ List<String> get aliases => const ["update"];
bool get takesArguments => true;
bool get isOffline => commandOptions['offline'];
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/serve.dart ('k') | sdk/lib/_internal/pub/lib/src/command/uploader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698