| 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 a16d42cfbe7a2ab222a9331ccf00af72e3ddf826..330b0dff7ac2142a572cf57b00322012437d369a 100644
|
| --- a/sdk/lib/html/html_common/filtered_element_list.dart
|
| +++ b/sdk/lib/html/html_common/filtered_element_list.dart
|
| @@ -104,6 +104,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);
|
|
|
| Element removeAt(int index) {
|
| final result = this[index];
|
|
|