| 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..9820f1ac85cc2b23606c4a5cc8286bb42fd8cb73 100644
|
| --- a/sdk/lib/html/html_common/filtered_element_list.dart
|
| +++ b/sdk/lib/html/html_common/filtered_element_list.dart
|
| @@ -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);
|
|
|
|
|