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 part of $LIBRARYNAME; | 5 part of $LIBRARYNAME; |
6 | 6 |
7 /** | 7 /** |
8 * Lazy implementation of the child nodes of an element that does not request | 8 * Lazy implementation of the child nodes of an element that does not request |
9 * the actual child nodes of an element until strictly necessary greatly | 9 * the actual child nodes of an element until strictly necessary greatly |
10 * improving performance for the typical cases where it is not required. | 10 * improving performance for the typical cases where it is not required. |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 "Cannot setRange on immutable List."); | 226 "Cannot setRange on immutable List."); |
227 } | 227 } |
228 void removeRange(int start, int rangeLength) { | 228 void removeRange(int start, int rangeLength) { |
229 throw new UnsupportedError( | 229 throw new UnsupportedError( |
230 "Cannot removeRange on immutable List."); | 230 "Cannot removeRange on immutable List."); |
231 } | 231 } |
232 void insertRange(int start, int rangeLength, [Node initialValue]) { | 232 void insertRange(int start, int rangeLength, [Node initialValue]) { |
233 throw new UnsupportedError( | 233 throw new UnsupportedError( |
234 "Cannot insertRange on immutable List."); | 234 "Cannot insertRange on immutable List."); |
235 } | 235 } |
| 236 List<Node> sublist(int start, [int end]) { |
| 237 if (end == null) end == length; |
| 238 return Lists.getRange(this, start, end, <Node>[]); |
| 239 } |
| 240 |
236 List<Node> getRange(int start, int rangeLength) => | 241 List<Node> getRange(int start, int rangeLength) => |
237 Lists.getRange(this, start, rangeLength, <Node>[]); | 242 sublist(start, start + rangeLength); |
238 | 243 |
239 // -- end List<Node> mixins. | 244 // -- end List<Node> mixins. |
240 | 245 |
241 // TODO(jacobr): benchmark whether this is more efficient or whether caching | 246 // TODO(jacobr): benchmark whether this is more efficient or whether caching |
242 // a local copy of $dom_childNodes is more efficient. | 247 // a local copy of $dom_childNodes is more efficient. |
243 int get length => _this.$dom_childNodes.length; | 248 int get length => _this.$dom_childNodes.length; |
244 | 249 |
245 void set length(int value) { | 250 void set length(int value) { |
246 throw new UnsupportedError( | 251 throw new UnsupportedError( |
247 "Cannot set length on immutable List."); | 252 "Cannot set length on immutable List."); |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 } | 319 } |
315 } else { | 320 } else { |
316 for (var node in newNodes) { | 321 for (var node in newNodes) { |
317 this.insertBefore(node, refChild); | 322 this.insertBefore(node, refChild); |
318 } | 323 } |
319 } | 324 } |
320 } | 325 } |
321 | 326 |
322 $!MEMBERS | 327 $!MEMBERS |
323 } | 328 } |
OLD | NEW |