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

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

Issue 50533005: Remove uses of dart:io Options from pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove global static copy of args. 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/bin/pub.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command.dart b/sdk/lib/_internal/pub/lib/src/command.dart
index e8b7ed0e09fa14a9589802d0ed8de194b61dd5bc..8f3ef55932500b22ed9c6bb7de11b7890fb6b7df 100644
--- a/sdk/lib/_internal/pub/lib/src/command.dart
+++ b/sdk/lib/_internal/pub/lib/src/command.dart
@@ -78,7 +78,7 @@ abstract class PubCommand {
help: 'Print usage information for this command.');
}
- void run(String cacheDir, ArgResults options) {
+ void run(String cacheDir, ArgResults options, List<String> arguments) {
commandOptions = options.command;
if (commandOptions['help']) {
@@ -111,7 +111,7 @@ abstract class PubCommand {
log.error("""
This is an unexpected error. Please run
- pub --trace ${new Options().arguments.map((arg) => "'$arg'").join(' ')}
+ pub --trace ${arguments.map((arg) => "'$arg'").join(' ')}
and include the results in a bug report on http://dartbug.com/new.
""");
« no previous file with comments | « sdk/lib/_internal/pub/bin/pub.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698