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

Side by Side Diff: utils/pub/utils.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/pub/system_cache.dart ('k') | utils/tests/pub/pub_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * Generic utility functions. Stuff that should possibly be in core. 6 * Generic utility functions. Stuff that should possibly be in core.
7 */ 7 */
8 #library('pub_utils'); 8 #library('pub_utils');
9 9
10 // TODO(rnystrom): Move into String? 10 // TODO(rnystrom): Move into String?
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 if (element is List) { 43 if (element is List) {
44 helper(element); 44 helper(element);
45 } else { 45 } else {
46 result.add(element); 46 result.add(element);
47 } 47 }
48 } 48 }
49 } 49 }
50 helper(nested); 50 helper(nested);
51 return result; 51 return result;
52 } 52 }
53
54 /**
55 * Asserts that [iter] contains only one element, and returns it.
56 */
57 only(Iterable iter) {
58 var iterator = iter.iterator();
59 assert(iterator.hasNext());
60 var obj = iterator.next();
61 assert(!iterator.hasNext());
62 return obj;
63 }
OLDNEW
« 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