OLD | NEW |
1 // -- start List<$E> mixins. | 1 // -- start List<$E> mixins. |
2 // $E is the element type. | 2 // $E is the element type. |
3 | 3 |
4 // From Iterable<$E>: | 4 // From Iterable<$E>: |
5 | 5 |
6 Iterator<$E> get iterator { | 6 Iterator<$E> get iterator { |
7 // Note: NodeLists are not fixed size. And most probably length shouldn't | 7 // Note: NodeLists are not fixed size. And most probably length shouldn't |
8 // be cached in both iterator _and_ forEach method. For now caching it | 8 // be cached in both iterator _and_ forEach method. For now caching it |
9 // for consistency. | 9 // for consistency. |
10 return new FixedSizeListIterator<$E>(this); | 10 return new FixedSizeListIterator<$E>(this); |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 } | 177 } |
178 | 178 |
179 void removeRange(int start, int rangeLength) { | 179 void removeRange(int start, int rangeLength) { |
180 throw new UnsupportedError("Cannot removeRange on immutable List."); | 180 throw new UnsupportedError("Cannot removeRange on immutable List."); |
181 } | 181 } |
182 | 182 |
183 void insertRange(int start, int rangeLength, [$E initialValue]) { | 183 void insertRange(int start, int rangeLength, [$E initialValue]) { |
184 throw new UnsupportedError("Cannot insertRange on immutable List."); | 184 throw new UnsupportedError("Cannot insertRange on immutable List."); |
185 } | 185 } |
186 | 186 |
| 187 List<$E> sublist(int start, [int end]) { |
| 188 if (end == null) end = length; |
| 189 return Lists.getRange(this, start, end, <$E>[]); |
| 190 } |
| 191 |
187 List<$E> getRange(int start, int rangeLength) => | 192 List<$E> getRange(int start, int rangeLength) => |
188 Lists.getRange(this, start, rangeLength, <$E>[]); | 193 sublist(start, start + rangeLength); |
189 | 194 |
190 Map<int, $E> asMap() => | 195 Map<int, $E> asMap() => |
191 IterableMixinWorkaround.asMapList(this); | 196 IterableMixinWorkaround.asMapList(this); |
192 | 197 |
193 // -- end List<$E> mixins. | 198 // -- end List<$E> mixins. |
OLD | NEW |