Index: sdk/lib/collection/iterable.dart |
diff --git a/sdk/lib/collection/iterable.dart b/sdk/lib/collection/iterable.dart |
index edfce8515bdf2b7b37125dc8f5e48706c3fa4652..26ccb5ca3b9d776535c06574c57589a8e8b18d72 100644 |
--- a/sdk/lib/collection/iterable.dart |
+++ b/sdk/lib/collection/iterable.dart |
@@ -91,7 +91,7 @@ abstract class IterableMixin<E> implements Iterable<E> { |
Set<E> toSet() => new Set<E>.from(this); |
int get length { |
- assert(this is! EfficientLengthIterable); |
+ assert(this is! EfficientLength); |
int count = 0; |
Iterator it = iterator; |
while (it.moveNext()) { |