Index: sdk/lib/_collection_dev/iterable.dart |
diff --git a/sdk/lib/_collection_dev/iterable.dart b/sdk/lib/_collection_dev/iterable.dart |
index bf6c85ef1582e1b60f697def038168545cff95f2..6d0e147865e7a1b4bb363197e628d36375f1f65d 100644 |
--- a/sdk/lib/_collection_dev/iterable.dart |
+++ b/sdk/lib/_collection_dev/iterable.dart |
@@ -14,6 +14,8 @@ abstract class ListIterable<E> extends Iterable<E> { |
int get length; |
E elementAt(int i); |
+ const ListIterable(); |
+ |
Iterator<E> get iterator => new ListIterator<E>(this); |
void forEach(void action(E element)) { |