OLD | NEW |
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 E removeLast() => _list.removeLast(); | 109 E removeLast() => _list.removeLast(); |
110 | 110 |
111 List<E> sublist(int start, [int end]) => _list.sublist(start, end); | 111 List<E> sublist(int start, [int end]) => _list.sublist(start, end); |
112 | 112 |
113 Iterable<E> getRange(int start, int end) => _list.getRange(start, end); | 113 Iterable<E> getRange(int start, int end) => _list.getRange(start, end); |
114 | 114 |
115 void setRange(int start, int end, Iterable<E> iterable, [int skipCount = 0]) { | 115 void setRange(int start, int end, Iterable<E> iterable, [int skipCount = 0]) { |
116 _list.setRange(start, end, iterable, skipCount); | 116 _list.setRange(start, end, iterable, skipCount); |
117 } | 117 } |
118 | 118 |
119 void removeRange(int start, int length) { _list.removeRange(start, length); } | 119 void removeRange(int start, int end) { _list.removeRange(start, end); } |
120 | 120 |
121 void insertRange(int start, int length, [E fill]) { | 121 void insertRange(int start, int length, [E fill]) { |
122 _list.insertRange(start, length, fill); | 122 _list.insertRange(start, length, fill); |
123 } | 123 } |
124 | 124 |
125 Map<int, E> asMap() => _list.asMap(); | 125 Map<int, E> asMap() => _list.asMap(); |
126 | 126 |
127 String toString() { | 127 String toString() { |
128 StringBuffer buffer = new StringBuffer('['); | 128 StringBuffer buffer = new StringBuffer('['); |
129 buffer.writeAll(this, ', '); | 129 buffer.writeAll(this, ', '); |
130 buffer.write(']'); | 130 buffer.write(']'); |
131 return buffer.toString(); | 131 return buffer.toString(); |
132 } | 132 } |
133 } | 133 } |
134 | 134 |
135 /** | 135 /** |
136 * Iterator wrapper for _WrappedList. | 136 * Iterator wrapper for _WrappedList. |
137 */ | 137 */ |
138 class _WrappedIterator<E> implements Iterator<E> { | 138 class _WrappedIterator<E> implements Iterator<E> { |
139 Iterator _iterator; | 139 Iterator _iterator; |
140 | 140 |
141 _WrappedIterator(this._iterator); | 141 _WrappedIterator(this._iterator); |
142 | 142 |
143 bool moveNext() { | 143 bool moveNext() { |
144 return _iterator.moveNext(); | 144 return _iterator.moveNext(); |
145 } | 145 } |
146 | 146 |
147 E get current => _iterator.current; | 147 E get current => _iterator.current; |
148 } | 148 } |
OLD | NEW |