OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |