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

Side by Side Diff: tools/dom/templates/html/impl/impl_Node.darttemplate

Issue 12817003: Change getRange to sublist. Make getRange deprecated. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
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 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698