Chromium Code Reviews| Index: sdk/lib/internal/iterable.dart |
| diff --git a/sdk/lib/internal/iterable.dart b/sdk/lib/internal/iterable.dart |
| index 85c505c8eef6c3e832b846a84a0d3daf777c87e5..4ad6d14e3669120d89cb2081808f2a93153f0e8a 100644 |
| --- a/sdk/lib/internal/iterable.dart |
| +++ b/sdk/lib/internal/iterable.dart |
| @@ -713,7 +713,7 @@ class EmptyIterable<E> extends IterableBase<E> implements EfficientLength { |
| Iterable<E> take(int count) { |
| if (count < 0) throw new RangeError.value(count); |
| - this; |
| + return this; |
| } |
| Iterable<E> takeWhile(bool test(E element)) => this; |