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

Unified Diff: utils/pub/source.dart

Issue 11369066: Show better error messages in network failures. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up string interpolation a bit. 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/package.dart ('k') | utils/tests/pub/install/hosted/fail_gracefully_on_missing_package_test.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 bb956c95c106916c1979ae8c89814173beb543b5..0dc6a23bca7f3de35a6aeb1967f42d68ff5bf7c6 100644
--- a/utils/pub/source.dart
+++ b/utils/pub/source.dart
@@ -23,6 +23,9 @@ abstract class Source {
*/
abstract String get name;
+ /// Whether or not this source is the default source.
+ bool get isDefault => systemCache.sources.defaultSource == this;
+
/**
* Whether this source's packages should be cached in Pub's global cache
* directory.
@@ -189,4 +192,7 @@ abstract class Source {
* By default, this just returns [id].
*/
Future<PackageId> resolveId(PackageId id) => new Future.immediate(id);
+
+ /// Returns the source's name.
+ String toString() => name;
}
« no previous file with comments | « utils/pub/package.dart ('k') | utils/tests/pub/install/hosted/fail_gracefully_on_missing_package_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698