| Index: sdk/lib/collection/iterable.dart
|
| diff --git a/sdk/lib/collection/iterable.dart b/sdk/lib/collection/iterable.dart
|
| index 1eabe3b49a0620d964b8d580831433b246b73d1b..667905a7012ec58167df5f97319b2c9c4fcdef71 100644
|
| --- a/sdk/lib/collection/iterable.dart
|
| +++ b/sdk/lib/collection/iterable.dart
|
| @@ -19,8 +19,8 @@ abstract class IterableMixin<E> implements Iterable<E> {
|
|
|
| Iterable<E> where(bool f(E element)) => new WhereIterable<E>(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);
|
|
|
| bool contains(Object element) {
|
| for (E e in this) {
|
|
|