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

Unified Diff: utils/pub/pub.dart

Issue 10869033: Update pub to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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/package.dart ('k') | utils/pub/sdk_source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/pub.dart
diff --git a/utils/pub/pub.dart b/utils/pub/pub.dart
index 284c8ccafb245d3a6de82796d4fe7275c3f8fe0a..b413602b91e3a0e54b97ee9ec70d784805dc85bf 100644
--- a/utils/pub/pub.dart
+++ b/utils/pub/pub.dart
@@ -28,12 +28,12 @@
#import('utils.dart');
#import('version.dart');
-Version get pubVersion() => new Version(0, 0, 0);
+Version get pubVersion => new Version(0, 0, 0);
/**
* The commands that Pub understands.
*/
-Map<String, PubCommand> get pubCommands() => {
+Map<String, PubCommand> get pubCommands => {
'help': new HelpCommand(),
'list': new ListCommand(),
'install': new InstallCommand(),
@@ -45,7 +45,7 @@ Map<String, PubCommand> get pubCommands() => {
* The parser for arguments that are global to Pub rather than specific to a
* single command.
*/
-ArgParser get pubArgParser() {
+ArgParser get pubArgParser {
var parser = new ArgParser();
parser.addFlag('help', abbr: 'h', negatable: false,
help: 'Prints this usage information');
@@ -150,18 +150,18 @@ class PubCommand {
/**
* A one-line description of this command.
*/
- abstract String get description();
+ abstract String get description;
/**
* How to invoke this command (e.g. `"pub install [package]"`).
*/
- abstract String get usage();
+ abstract String get usage;
/**
* Override this to define command-specific options. The results will be made
* available in [commandOptions].
*/
- ArgParser get commandParser() => new ArgParser();
+ ArgParser get commandParser => new ArgParser();
void run(SystemCache cache_, ArgResults globalOptions_,
List<String> commandArgs) {
« no previous file with comments | « utils/pub/package.dart ('k') | utils/pub/sdk_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698