| Index: sdk/lib/collection/list.dart
|
| diff --git a/sdk/lib/collection/list.dart b/sdk/lib/collection/list.dart
|
| index 40e8c86a96c79a4b63219752c390179112cabab7..1cc22ecf88508bd35c56b582e10ed37bdbd0c1a2 100644
|
| --- a/sdk/lib/collection/list.dart
|
| +++ b/sdk/lib/collection/list.dart
|
| @@ -177,8 +177,8 @@ abstract class ListMixin<E> implements List<E> {
|
|
|
| Iterable<T> map<T>(T f(E element)) => new MappedListIterable<E, T>(this, f);
|
|
|
| - Iterable<T>
|
| - expand<T>(Iterable<T> f(E element)) => new ExpandIterable<E, T>(this, f);
|
| + Iterable<T> expand<T>(Iterable<T> f(E element)) =>
|
| + new ExpandIterable<E, T>(this, f);
|
|
|
| E reduce(E combine(E previousValue, E element)) {
|
| int length = this.length;
|
|
|