| 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 776d2fd31f1578724302da971a166254cbd779f0..5f1f961bac5a61d736ae06440674923b8c189dba 100644
|
| --- a/sdk/lib/html/html_common/filtered_element_list.dart
|
| +++ b/sdk/lib/html/html_common/filtered_element_list.dart
|
| @@ -110,7 +110,7 @@ class FilteredElementList implements List {
|
|
|
| dynamic reduce(dynamic initialValue,
|
| dynamic combine(dynamic previousValue, Element element)) {
|
| - return Collections.reduce(this, initialValue, combine);
|
| + return IterableMixinWorkaround.reduce(this, initialValue, combine);
|
| }
|
| bool every(bool f(Element element)) => _filtered.every(f);
|
| bool any(bool f(Element element)) => _filtered.any(f);
|
|
|