| Index: tools/dom/templates/html/impl/impl_Element.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_Element.darttemplate b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| index a7f305d56b959aa22a55b18c2b44216e56a8922c..f0d30a707aa5aa323a01e9891f3a421d3a386b96 100644
|
| --- a/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_Element.darttemplate
|
| @@ -204,14 +204,15 @@ class _ChildrenElementList extends ListBase<Element> {
|
| throw new UnimplementedError();
|
| }
|
|
|
| + Iterable getRange(int start, int end) {
|
| + throw new UnimplementedError();
|
| + }
|
| +
|
| List sublist(int start, [int end]) {
|
| if (end == null) end = length;
|
| return new _FrozenElementList._wrap(Lists.getRange(this, start, end, []));
|
| }
|
|
|
| - List getRange(int start, int rangeLength) =>
|
| - sublist(start, start + rangeLength);
|
| -
|
| int indexOf(Element element, [int start = 0]) {
|
| return Lists.indexOf(this, element, start, this.length);
|
| }
|
|
|