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

Unified Diff: utils/pub/source.dart

Issue 11363249: Fix error reporting on invalid command line args. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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/pub.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/source.dart
diff --git a/utils/pub/source.dart b/utils/pub/source.dart
index 0dc6a23bca7f3de35a6aeb1967f42d68ff5bf7c6..85a6c7bfb2bc7c64e51b99a6aa33a28de97051ec 100644
--- a/utils/pub/source.dart
+++ b/utils/pub/source.dart
@@ -21,7 +21,7 @@ abstract 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;
+ String get name;
/// Whether or not this source is the default source.
bool get isDefault => systemCache.sources.defaultSource == this;
@@ -34,7 +34,7 @@ abstract class Source {
* packages. It doesn't need to be cached if all packages are available
* locally.
*/
- abstract bool get shouldCache;
+ bool get shouldCache;
/**
* The system cache with which this source is registered.
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698