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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/uploader.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/uploader.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/uploader.dart b/sdk/lib/_internal/pub/lib/src/command/uploader.dart
index 32e21a84be332aaa49c766a7bbd04fe681aec640..f9aa11d5cb461872f2baf8981fff6c9c90c514e3 100644
--- a/sdk/lib/_internal/pub/lib/src/command/uploader.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/uploader.dart
@@ -19,9 +19,10 @@ import '../source/hosted.dart';
/// Handles the `uploader` pub command.
class UploaderCommand extends PubCommand {
- final description = "Manage uploaders for a package on pub.dartlang.org.";
- final usage = "pub uploader [options] {add/remove} <email>";
- final requiresEntrypoint = false;
+ String get description =>
+ "Manage uploaders for a package on pub.dartlang.org.";
+ String get usage => "pub uploader [options] {add/remove} <email>";
+ bool get requiresEntrypoint => false;
bool get takesArguments => true;
/// The URL of the package hosting server.
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/upgrade.dart ('k') | sdk/lib/_internal/pub/lib/src/command/version.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698