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

Unified Diff: utils/pub/source.dart

Issue 10388123: Reverting 7623 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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/pub.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 da01f1214930d47b5c335afc66334e182f770407..3e4eb087c0be0f89a957844e13fef924311c8778 100644
--- a/utils/pub/source.dart
+++ b/utils/pub/source.dart
@@ -10,6 +10,22 @@
*/
class Source {
/**
+ * The default [Source] from which to fetch packages if no other [Source] is
+ * specified.
+ */
+ static Source defaultSource;
+
+ /**
+ * Looks up a source based on its name.
+ */
+ static Source fromName(String name) {
+ // TODO(nweiz): add a more principled way of registering sources here once
+ // we have more than one source. Especially important for plugins.
+ if (name == 'sdk') return defaultSource;
+ throw 'Unknown source "$name"';
+ }
+
+ /**
* The name of the source. Should be lower-case, suitable for use in a
* filename, and unique accross all sources.
*/
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/source_registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698