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

Unified Diff: sdk/lib/_internal/pub_generated/lib/src/command/cache_list.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/cache_list.dart
diff --git a/sdk/lib/_internal/pub_generated/lib/src/command/cache_list.dart b/sdk/lib/_internal/pub_generated/lib/src/command/cache_list.dart
index f69b7486aa5c93949c1df5fecba3e9dabf602567..78f7e8a0cacfd58daa5c13e5f2c5293ae382542f 100644
--- a/sdk/lib/_internal/pub_generated/lib/src/command/cache_list.dart
+++ b/sdk/lib/_internal/pub_generated/lib/src/command/cache_list.dart
@@ -4,7 +4,6 @@
library pub.command.cache_list;
-import 'dart:async';
import 'dart:convert';
import '../command.dart';
@@ -13,11 +12,13 @@ import '../source/cached.dart';
/// Handles the `cache list` pub command.
class CacheListCommand extends PubCommand {
+ String get name => "list";
String get description => "List packages in the system cache.";
- String get usage => "pub cache list";
+ String get invocation => "pub cache list";
bool get hidden => true;
+ bool get takesArguments => false;
- Future onRun() {
+ void run() {
// TODO(keertip): Add flag to list packages from non default sources.
var packagesObj = <String, Map>{};
@@ -34,6 +35,5 @@ class CacheListCommand extends PubCommand {
log.message(JSON.encode({
'packages': packagesObj
}));
- return null;
}
}

Powered by Google App Engine
This is Rietveld 408576698