Chromium Code Reviews

Unified Diff: sdk/lib/_collection_dev/iterable.dart

Issue 12282038: Remove deprecated string features. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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)) {

Powered by Google App Engine