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

Unified Diff: utils/pub/package.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/io.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/package.dart
diff --git a/utils/pub/package.dart b/utils/pub/package.dart
index dc5a472dfa7b1c34423efd8f79b4ed8c0e983c1d..4b52092998d80d44f67440dccea8815cae05c984 100644
--- a/utils/pub/package.dart
+++ b/utils/pub/package.dart
@@ -48,7 +48,7 @@ class Package {
/**
* The package's version.
*/
- Version get version() => pubspec.version;
+ Version get version => pubspec.version;
/**
* The parsed pubspec associated with this package.
@@ -59,7 +59,7 @@ class Package {
* The ids of the packages that this package depends on. This is what is
* specified in the pubspec when this package depends on another.
*/
- Collection<PackageRef> get dependencies() => pubspec.dependencies;
+ Collection<PackageRef> get dependencies => pubspec.dependencies;
/**
* Constructs a package with the given name and pubspec. The package will
@@ -116,7 +116,7 @@ class PackageId implements Comparable, Hashable {
* The name of the package being identified. This will be the human-friendly
* name like "uilib".
*/
- String get name() => source.packageName(description);
+ String get name => source.packageName(description);
int hashCode() => name.hashCode() ^
source.name.hashCode() ^
@@ -154,7 +154,7 @@ class PackageId implements Comparable, Hashable {
/**
* Returns a future that completes to the resovled [PackageId] for this id.
*/
- Future<PackageId> get resolved() => source.resolveId(this);
+ Future<PackageId> get resolved => source.resolveId(this);
}
/**
@@ -182,7 +182,7 @@ class PackageRef {
/**
* The name of the package being referenced.
*/
- String get name() => source.packageName(description);
+ String get name => source.packageName(description);
PackageRef(this.source, this.constraint, this.description);
« no previous file with comments | « utils/pub/io.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698