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

Unified Diff: utils/pub/version.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/source_registry.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/version.dart
diff --git a/utils/pub/version.dart b/utils/pub/version.dart
index 796dec0feb99200171e1d771813b2ce15f3966a2..4a37062e618201a4a24a4bbd05a36c9bcc19c8b0 100644
--- a/utils/pub/version.dart
+++ b/utils/pub/version.dart
@@ -16,7 +16,7 @@
/** A parsed semantic version number. */
class Version implements Comparable, Hashable, VersionConstraint {
/** No released version: i.e. "0.0.0". */
- static Version get none() => new Version(0, 0, 0);
+ static Version get none => new Version(0, 0, 0);
static final _PARSE_REGEX = const RegExp(
@'^' // Start at beginning.
@@ -84,7 +84,7 @@ class Version implements Comparable, Hashable, VersionConstraint {
bool operator <=(Version other) => compareTo(other) <= 0;
bool operator >=(Version other) => compareTo(other) >= 0;
- bool get isEmpty() => false;
+ bool get isEmpty => false;
/** Tests if [other] matches this version exactly. */
bool allows(Version other) => this == other;
@@ -231,7 +231,7 @@ interface VersionConstraint default _VersionConstraintFactory {
/**
* Returns `true` if this constraint allows no versions.
*/
- bool get isEmpty();
+ bool get isEmpty;
/**
* Returns `true` if this constraint allows [version].
@@ -274,7 +274,7 @@ class VersionRange implements VersionConstraint {
includeMax == other.includeMax;
}
- bool get isEmpty() => false;
+ bool get isEmpty => false;
/** Tests if [other] matches falls within this version range. */
bool allows(Version other) {
@@ -369,7 +369,7 @@ class VersionRange implements VersionConstraint {
class _EmptyVersion implements VersionConstraint {
const _EmptyVersion();
- bool get isEmpty() => true;
+ bool get isEmpty => true;
bool allows(Version other) => false;
VersionConstraint intersect(VersionConstraint other) => this;
String toString() => '<empty>';
« no previous file with comments | « utils/pub/source_registry.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698