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 bdfd4c91c210d28165424a3a1d2a471ae490849d..5c5482fd24f18665270b4bdc5be5f610e338a7ba 100644 |
--- a/tools/dom/templates/html/impl/impl_Element.darttemplate |
+++ b/tools/dom/templates/html/impl/impl_Element.darttemplate |
@@ -92,7 +92,7 @@ class _ChildrenElementList extends ListBase<Element> { |
} |
Iterable<Element> skip(int n) { |
- return _childElements.skipList(n); |
+ return _childElements.skip(n); |
} |
Iterable<Element> skipWhile(bool test(Element value)) { |
@@ -281,7 +281,7 @@ class _ChildrenElementList extends ListBase<Element> { |
} |
Map<int, Element> asMap() { |
- return _childElements.asMapList(this); |
+ return _childElements.asMap(); |
} |
String toString() { |