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

Unified Diff: utils/pub/command_update.dart

Issue 10442023: Get rid of #source in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to (verbal) review. Created 8 years, 7 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 | « utils/pub/command_list.dart ('k') | utils/pub/command_version.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/command_update.dart
diff --git a/utils/pub/command_update.dart b/utils/pub/command_update.dart
index 76863130f156b5b5928fb2daf8a86eade533666f..b5386eb4df1ad7216294b30590818d775c07486a 100644
--- a/utils/pub/command_update.dart
+++ b/utils/pub/command_update.dart
@@ -2,10 +2,18 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+#library('command_update');
+
+#import('pub.dart');
+
/** Handles the `update` pub command. */
// TODO(nweiz): Make update do something different than install when we have
// sources for which that makes sense.
-class UpdateCommand extends InstallCommand {
+class UpdateCommand extends PubCommand {
String get description() =>
"update the current package's dependencies to the latest versions";
+
+ Future onRun() {
+ print("Not implemented.");
+ }
}
« no previous file with comments | « utils/pub/command_list.dart ('k') | utils/pub/command_version.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698