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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/lish.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/help.dart ('k') | sdk/lib/_internal/pub/lib/src/command/serve.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/lish.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/lish.dart b/sdk/lib/_internal/pub/lib/src/command/lish.dart
index b962f2469ba815bbfde70d4a0a15985a00be2cac..d5b6b50f51009ff2ff4f733175a4962d3f74c4ca 100644
--- a/sdk/lib/_internal/pub/lib/src/command/lish.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/lish.dart
@@ -21,9 +21,9 @@ import '../validator.dart';
/// Handles the `lish` and `publish` pub commands.
class LishCommand extends PubCommand {
- final description = "Publish the current package to pub.dartlang.org.";
- final usage = "pub publish [options]";
- final aliases = const ["lish", "lush"];
+ String get description => "Publish the current package to pub.dartlang.org.";
+ String get usage => "pub publish [options]";
+ List<String> get aliases => const ["lish", "lush"];
/// The URL of the server to which to upload the package.
Uri get server => Uri.parse(commandOptions['server']);
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/help.dart ('k') | sdk/lib/_internal/pub/lib/src/command/serve.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698