| Index: test/dart_codegen/expect/_internal/iterable.dart
|
| diff --git a/test/dart_codegen/expect/_internal/iterable.dart b/test/dart_codegen/expect/_internal/iterable.dart
|
| index f40e73923c62bb4941d7ef13880468d520baeb4b..335bad7bc9ac020642e739ca03c55658021f61ce 100644
|
| --- a/test/dart_codegen/expect/_internal/iterable.dart
|
| +++ b/test/dart_codegen/expect/_internal/iterable.dart
|
| @@ -577,10 +577,10 @@ RangeError.checkNotNegative(count, "count");
|
| return this;
|
| }
|
| Iterable<E> takeWhile(bool test(E element)) => this;
|
| - List toList({
|
| + List<E> toList({
|
| bool growable : true}
|
| ) => growable ? <E> [] : new List<E>(0);
|
| - Set toSet() => new Set<E>();
|
| + Set<E> toSet() => new Set<E>();
|
| }
|
| class EmptyIterator<E> implements Iterator<E> {const EmptyIterator();
|
| bool moveNext() => false;
|
|
|