| Index: sdk/lib/collection/linked_list.dart
|
| diff --git a/sdk/lib/collection/linked_list.dart b/sdk/lib/collection/linked_list.dart
|
| index d1a8314b5e3444fbb788341726c525c0a29d002f..cd89e78786161986bc8051f82d63a41912d0b423 100644
|
| --- a/sdk/lib/collection/linked_list.dart
|
| +++ b/sdk/lib/collection/linked_list.dart
|
| @@ -61,6 +61,9 @@ class LinkedList<E extends LinkedListEntry<E>>
|
|
|
| Iterator<E> get iterator => new _LinkedListIterator<E>(this);
|
|
|
| + // TODO(zarah) Remove this, and let it be inherited by IterableMixin
|
| + String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
|
| +
|
| int get length => _length;
|
|
|
| void clear() {
|
|
|