| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index f66bf3a19f923b63344b41003152f27bd0880479..c6f568b65332ff84eb682232f2b56f30128b7c8d 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -7771,7 +7771,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)) {
|
| @@ -7960,7 +7960,7 @@ class _ChildrenElementList extends ListBase<Element> {
|
| }
|
|
|
| Map<int, Element> asMap() {
|
| - return _childElements.asMapList(this);
|
| + return _childElements.asMap();
|
| }
|
|
|
| String toString() {
|
|
|