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

Side by Side Diff: tools/dom/src/WrappedList.dart

Issue 13704017: Make html lists print a nice toString method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « tests/html/node_test.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 dart.dom.html; 5 part of dart.dom.html;
6 6
7 /** 7 /**
8 * A list which just wraps another list, for either intercepting list calls or 8 * A list which just wraps another list, for either intercepting list calls or
9 * retyping the list (for example, from List<A> to List<B> where B extends A). 9 * retyping the list (for example, from List<A> to List<B> where B extends A).
10 */ 10 */
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 _list.setRange(start, length, from, startFrom); 124 _list.setRange(start, length, from, startFrom);
125 } 125 }
126 126
127 void removeRange(int start, int length) { _list.removeRange(start, length); } 127 void removeRange(int start, int length) { _list.removeRange(start, length); }
128 128
129 void insertRange(int start, int length, [E fill]) { 129 void insertRange(int start, int length, [E fill]) {
130 _list.insertRange(start, length, fill); 130 _list.insertRange(start, length, fill);
131 } 131 }
132 132
133 Map<int, E> asMap() => IterableMixinWorkaround.asMapList(_list); 133 Map<int, E> asMap() => IterableMixinWorkaround.asMapList(_list);
134
135 String toString() {
136 StringBuffer buffer = new StringBuffer('[');
137 buffer.writeAll(this, ', ');
138 buffer.write(']');
139 return buffer.toString();
140 }
134 } 141 }
135 142
136 /** 143 /**
137 * Iterator wrapper for _WrappedList. 144 * Iterator wrapper for _WrappedList.
138 */ 145 */
139 class _WrappedIterator<E> implements Iterator<E> { 146 class _WrappedIterator<E> implements Iterator<E> {
140 Iterator _iterator; 147 Iterator _iterator;
141 148
142 _WrappedIterator(this._iterator); 149 _WrappedIterator(this._iterator);
143 150
144 bool moveNext() { 151 bool moveNext() {
145 return _iterator.moveNext(); 152 return _iterator.moveNext();
146 } 153 }
147 154
148 E get current => _iterator.current; 155 E get current => _iterator.current;
149 } 156 }
OLDNEW
« no previous file with comments | « tests/html/node_test.dart ('k') | tools/dom/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698