| Index: sdk/lib/html/html_common/filtered_element_list.dart
|
| diff --git a/sdk/lib/html/html_common/filtered_element_list.dart b/sdk/lib/html/html_common/filtered_element_list.dart
|
| index 9337e6b27c4a7dd173b1d032290b7ef78f16fc6b..330b0dff7ac2142a572cf57b00322012437d369a 100644
|
| --- a/sdk/lib/html/html_common/filtered_element_list.dart
|
| +++ b/sdk/lib/html/html_common/filtered_element_list.dart
|
| @@ -69,7 +69,7 @@ class FilteredElementList implements List {
|
| return element is Element && _childNodes.contains(element);
|
| }
|
|
|
| - Iterable<Element> get reversed => _filtered.reversed;
|
| + List<Element> get reversed => _filtered.reversed;
|
|
|
| void sort([int compare(Element a, Element b)]) {
|
| throw new UnsupportedError('TODO(jacobr): should we impl?');
|
| @@ -102,6 +102,7 @@ class FilteredElementList implements List {
|
| }
|
|
|
| Iterable map(f(Element element)) => _filtered.map(f);
|
| + List mappedBy(f(Element element)) => _filtered.mappedBy(f);
|
| Iterable<Element> where(bool f(Element element)) => _filtered.where(f);
|
| Iterable expand(Iterable f(Element element)) => _filtered.expand(f);
|
|
|
|
|