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

Unified Diff: utils/pub/source_registry.dart

Issue 10542015: Start adding support for lock files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
Index: utils/pub/source_registry.dart
diff --git a/utils/pub/source_registry.dart b/utils/pub/source_registry.dart
index e6080e39534ef3722c211f4be67e4b0140c26013..481db8a233a583a687ead8060de71d277dee2811 100644
--- a/utils/pub/source_registry.dart
+++ b/utils/pub/source_registry.dart
@@ -50,6 +50,11 @@ class SourceRegistry {
}
/**
+ * Returns `true` if there is a source named [name].
+ */
+ bool contains(String name) => _map.containsKey(name);
+
+ /**
* Returns the source named [name]. Throws an error if no such source has been
* registered. If [name] is null, returns the default source.
*/

Powered by Google App Engine
This is Rietveld 408576698