| 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 bc0a6af1c790e923df5fd01b0f548e16f7a8c4de..264472070b6cf7cd6b0ac9252dc493ff4a66577c 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);
|
| + }
|
| }
|
|
|