Index: runtime/lib/typeddata.dart |
diff --git a/runtime/lib/typeddata.dart b/runtime/lib/typeddata.dart |
index c4c2d32bb93879217977c741dafe453428e7df7b..244948cd21be5b6c8a4921b308e59283a95c8beb 100644 |
--- a/runtime/lib/typeddata.dart |
+++ b/runtime/lib/typeddata.dart |
@@ -312,6 +312,11 @@ abstract class _TypedListBase { |
return IterableMixinWorkaround.reduce(this, initialValue, combine); |
} |
+ dynamic fold(dynamic initialValue, |
+ dynamic combine(dynamic initialValue, element)) { |
+ return IterableMixinWorkaround.fold(this, initialValue, combine); |
+ } |
+ |
Iterable where(bool f(int element)) { |
return IterableMixinWorkaround.where(this, f); |
} |