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

Unified Diff: utils/pub/version_solver.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/version.dart ('k') | utils/pub/yaml/model.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/version_solver.dart
diff --git a/utils/pub/version_solver.dart b/utils/pub/version_solver.dart
index 2aadbfa8d7c8bab613e8cee24ada93cd679a284d..d4485f9225dd5137d3ab05ea073e6227205cccdd 100644
--- a/utils/pub/version_solver.dart
+++ b/utils/pub/version_solver.dart
@@ -253,7 +253,7 @@ class ChangeVersion implements WorkItem {
/**
* The name of the package whose version is changing.
*/
- String get package() => source.packageName(description);
+ String get package => source.packageName(description);
ChangeVersion(this.source, this.description, this.version) {
if (source == null) throw "null source";
@@ -553,17 +553,17 @@ class Dependency {
* one. If `false`, then it means this package is not part of the dependency
* graph and should be omitted.
*/
- bool get isDependedOn() => !_refs.isEmpty();
+ bool get isDependedOn => !_refs.isEmpty();
/** The names of all the packages that depend on this dependency. */
- Collection<String> get dependers() => _refs.getKeys();
+ Collection<String> get dependers => _refs.getKeys();
/**
* Gets the overall constraint that all packages are placing on this one.
* If no packages have a constraint on this one (which can happen when this
* package is in the process of being added to the graph), returns `null`.
*/
- VersionConstraint get constraint() {
+ VersionConstraint get constraint {
if (_refs.isEmpty()) return null;
return new VersionConstraint.intersect(
_refs.getValues().map((ref) => ref.constraint));
« no previous file with comments | « utils/pub/version.dart ('k') | utils/pub/yaml/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698