| 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 2883cf76d9535885057eb8b0cee03959315b171b..b1f9a7f2ea0aeaa4da169536862ee1bd80f636ff 100644
|
| --- a/sdk/lib/html/html_common/filtered_element_list.dart
|
| +++ b/sdk/lib/html/html_common/filtered_element_list.dart
|
| @@ -205,4 +205,8 @@ class FilteredElementList implements List {
|
| Element min([int compare(Element a, Element b)]) => _filtered.min(compare);
|
|
|
| Element max([int compare(Element a, Element b)]) => _filtered.max(compare);
|
| +
|
| + Map<int, Element> asMap() {
|
| + return IterableMixinWorkaround.asMapList(this);
|
| + }
|
| }
|
|
|