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

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

Issue 12817003: Change getRange to sublist. Make getRange deprecated. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments 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) 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 int indexOf(E element, [int start = 0]) => _list.indexOf(element, start); 108 int indexOf(E element, [int start = 0]) => _list.indexOf(element, start);
109 109
110 int lastIndexOf(E element, [int start]) => _list.lastIndexOf(element, start); 110 int lastIndexOf(E element, [int start]) => _list.lastIndexOf(element, start);
111 111
112 void insert(int index, E element) => _list.insert(index, element); 112 void insert(int index, E element) => _list.insert(index, element);
113 113
114 E removeAt(int index) => _list.removeAt(index); 114 E removeAt(int index) => _list.removeAt(index);
115 115
116 E removeLast() => _list.removeLast(); 116 E removeLast() => _list.removeLast();
117 117
118 List<E> getRange(int start, int length) => _list.getRange(start, length); 118 List<E> sublist(int start, [int end]) => _list.sublist(start, end);
119
120 List<E> getRange(int start, int length) => sublist(start, start + length);
119 121
120 void setRange(int start, int length, List<E> from, [int startFrom]) { 122 void setRange(int start, int length, List<E> from, [int startFrom]) {
121 _list.setRange(start, length, from, startFrom); 123 _list.setRange(start, length, from, startFrom);
122 } 124 }
123 125
124 void removeRange(int start, int length) { _list.removeRange(start, length); } 126 void removeRange(int start, int length) { _list.removeRange(start, length); }
125 127
126 void insertRange(int start, int length, [E fill]) { 128 void insertRange(int start, int length, [E fill]) {
127 _list.insertRange(start, length, fill); 129 _list.insertRange(start, length, fill);
128 } 130 }
129 131
130 Map<int, E> asMap() => IterableMixinWorkaround.asMapList(_list); 132 Map<int, E> asMap() => IterableMixinWorkaround.asMapList(_list);
131 } 133 }
132 134
133 /** 135 /**
134 * Iterator wrapper for _WrappedList. 136 * Iterator wrapper for _WrappedList.
135 */ 137 */
136 class _WrappedIterator<E> implements Iterator<E> { 138 class _WrappedIterator<E> implements Iterator<E> {
137 Iterator _iterator; 139 Iterator _iterator;
138 140
139 _WrappedIterator(this._iterator); 141 _WrappedIterator(this._iterator);
140 142
141 bool moveNext() { 143 bool moveNext() {
142 return _iterator.moveNext(); 144 return _iterator.moveNext();
143 } 145 }
144 146
145 E get current => _iterator.current; 147 E get current => _iterator.current;
146 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698