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

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

Issue 24740003: Add List.shuffle(). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adddress comments Created 7 years, 2 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 | « tools/dom/templates/html/impl/impl_Element.darttemplate ('k') | no next file » | 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 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 Iterator<Node> get iterator => _this.childNodes.iterator; 148 Iterator<Node> get iterator => _this.childNodes.iterator;
149 149
150 // From List<Node>: 150 // From List<Node>:
151 151
152 // TODO(jacobr): this could be implemented for child node lists. 152 // TODO(jacobr): this could be implemented for child node lists.
153 // The exception we throw here is misleading. 153 // The exception we throw here is misleading.
154 void sort([Comparator<Node> compare]) { 154 void sort([Comparator<Node> compare]) {
155 throw new UnsupportedError("Cannot sort Node list"); 155 throw new UnsupportedError("Cannot sort Node list");
156 } 156 }
157 157
158 void shuffle() {
159 throw new UnsupportedError("Cannot shuffle Node list");
160 }
161
158 // FIXME: implement these. 162 // FIXME: implement these.
159 void setRange(int start, int end, Iterable<Node> iterable, 163 void setRange(int start, int end, Iterable<Node> iterable,
160 [int skipCount = 0]) { 164 [int skipCount = 0]) {
161 throw new UnsupportedError("Cannot setRange on Node list"); 165 throw new UnsupportedError("Cannot setRange on Node list");
162 } 166 }
163 167
164 void fillRange(int start, int end, [Node fill]) { 168 void fillRange(int start, int end, [Node fill]) {
165 throw new UnsupportedError("Cannot fillRange on Node list"); 169 throw new UnsupportedError("Cannot fillRange on Node list");
166 } 170 }
167 // -- end List<Node> mixins. 171 // -- end List<Node> mixins.
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 Map<String, dynamic> get bindings => 316 Map<String, dynamic> get bindings =>
313 TemplateElement.mdvPackage(this).bindings; 317 TemplateElement.mdvPackage(this).bindings;
314 318
315 /** Gets the template instance that instantiated this node, if any. */ 319 /** Gets the template instance that instantiated this node, if any. */
316 @Experimental() 320 @Experimental()
317 TemplateInstance get templateInstance => 321 TemplateInstance get templateInstance =>
318 TemplateElement.mdvPackage(this).templateInstance; 322 TemplateElement.mdvPackage(this).templateInstance;
319 323
320 $!MEMBERS 324 $!MEMBERS
321 } 325 }
OLDNEW
« no previous file with comments | « tools/dom/templates/html/impl/impl_Element.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698