Chromium Code Reviews| Index: sdk/lib/collection/iterable.dart |
| diff --git a/sdk/lib/collection/iterable.dart b/sdk/lib/collection/iterable.dart |
| index 26ccb5ca3b9d776535c06574c57589a8e8b18d72..edfce8515bdf2b7b37125dc8f5e48706c3fa4652 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! EfficientLength); |
| + assert(this is! EfficientLengthIterable); |
| int count = 0; |
| Iterator it = iterator; |
| while (it.moveNext()) { |