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

Unified Diff: utils/pub/source.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/sdk_source.dart ('k') | utils/pub/source_registry.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/source.dart
diff --git a/utils/pub/source.dart b/utils/pub/source.dart
index 94d00b166f3009eeff9471c97ecf2b15c4c3acdb..e97b50396b42ffeecec3b694356fbdd3ea86c902 100644
--- a/utils/pub/source.dart
+++ b/utils/pub/source.dart
@@ -21,7 +21,7 @@ class Source {
* The name of the source. Should be lower-case, suitable for use in a
* filename, and unique accross all sources.
*/
- abstract String get name();
+ abstract String get name;
/**
* Whether this source's packages should be cached in Pub's global cache
@@ -31,12 +31,12 @@ class Source {
* packages. It doesn't need to be cached if all packages are available
* locally.
*/
- abstract bool get shouldCache();
+ abstract bool get shouldCache;
/**
* The system cache with which this source is registered.
*/
- SystemCache get systemCache() {
+ SystemCache get systemCache {
assert(_systemCache != null);
return _systemCache;
}
@@ -51,7 +51,7 @@ class Source {
*
* This shouldn't be overridden by subclasses.
*/
- String get systemCacheRoot() => join(systemCache.rootDir, name);
+ String get systemCacheRoot => join(systemCache.rootDir, name);
/**
* Records the system cache to which this source belongs.
« no previous file with comments | « utils/pub/sdk_source.dart ('k') | utils/pub/source_registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698