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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/get.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
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/cache.dart ('k') | sdk/lib/_internal/pub/lib/src/command/help.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command/get.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/get.dart b/sdk/lib/_internal/pub/lib/src/command/get.dart
index 97db6c0703e8a27f0dd793114438974674225e6d..51c5f0a5f7211928a9a2b5bcb4e5577b3b8b6c7d 100644
--- a/sdk/lib/_internal/pub/lib/src/command/get.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/get.dart
@@ -13,9 +13,8 @@ import '../log.dart' as log;
class GetCommand extends PubCommand {
String get description => "Get the current package's dependencies.";
String get usage => "pub get";
- final aliases = const ["install"];
-
- bool get isOffline => commandOptions['offline'];
+ List<String> get aliases => const ["install"];
+ bool get isOffline => commandOptions["offline"];
GetCommand() {
commandParser.addFlag('offline',
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/cache.dart ('k') | sdk/lib/_internal/pub/lib/src/command/help.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698