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

Unified Diff: utils/pub/utils.dart

Issue 10392089: Add a Pub source that checks packages out from Git. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update both RegExps 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/system_cache.dart ('k') | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/utils.dart
diff --git a/utils/pub/utils.dart b/utils/pub/utils.dart
index 39c86dfa274c5b42f403da69618b84c3f92a7bb7..d0c2f435d21de48cd5cefdfb5a116148f503931d 100644
--- a/utils/pub/utils.dart
+++ b/utils/pub/utils.dart
@@ -50,3 +50,14 @@ List flatten(List nested) {
helper(nested);
return result;
}
+
+/**
+ * Asserts that [iter] contains only one element, and returns it.
+ */
+only(Iterable iter) {
+ var iterator = iter.iterator();
+ assert(iterator.hasNext());
+ var obj = iterator.next();
+ assert(!iterator.hasNext());
+ return obj;
+}
« no previous file with comments | « utils/pub/system_cache.dart ('k') | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698