| Index: runtime/lib/growable_array.dart
|
| diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
|
| index ba0b90a16db6c22dc5f561cba632a1bef4ed6b1c..fada7c85bb5ad8a231014bcf8363f9d85d6c9eb9 100644
|
| --- a/runtime/lib/growable_array.dart
|
| +++ b/runtime/lib/growable_array.dart
|
| @@ -208,10 +208,6 @@ class _GrowableObjectArray<T> implements List<T> {
|
| throw new StateError("More than one element");
|
| }
|
|
|
| - T min([int compare(T a, T b)]) => IterableMixinWorkaround.min(this, compare);
|
| -
|
| - T max([int compare(T a, T b)]) => IterableMixinWorkaround.max(this, compare);
|
| -
|
| int indexOf(T element, [int start = 0]) {
|
| return IterableMixinWorkaround.indexOfList(this, element, start);
|
| }
|
| @@ -264,8 +260,8 @@ class _GrowableObjectArray<T> implements List<T> {
|
| return IterableMixinWorkaround.mapList(this, f);
|
| }
|
|
|
| - reduce(initialValue, combine(previousValue, T element)) {
|
| - return IterableMixinWorkaround.reduce(this, initialValue, combine);
|
| + E reduce(E combine(E value, T element)) {
|
| + return IterableMixinWorkaround.reduce(this, combine);
|
| }
|
|
|
| fold(initialValue, combine(previousValue, T element)) {
|
|
|