| Index: sdk/lib/collection/linked_list.dart
|
| diff --git a/sdk/lib/collection/linked_list.dart b/sdk/lib/collection/linked_list.dart
|
| index a9c898969429e27cbe854b7cf577c6acfb06c7bc..1c8f062858691ff56e642696b6c0bf24c7e4819f 100644
|
| --- a/sdk/lib/collection/linked_list.dart
|
| +++ b/sdk/lib/collection/linked_list.dart
|
| @@ -14,6 +14,7 @@ part of dart.collection;
|
| class LinkedList<E extends LinkedListEntry<E>>
|
| extends IterableBase<E>
|
| implements _LinkedListLink {
|
| +
|
| int _modificationCount = 0;
|
| int _length = 0;
|
| _LinkedListLink _next;
|
| @@ -60,7 +61,8 @@ class LinkedList<E extends LinkedListEntry<E>>
|
|
|
| Iterator<E> get iterator => new _LinkedListIterator<E>(this);
|
|
|
| - String toString() => ToString.iterableToString(this);
|
| + // TODO(zarah) Remove this, and let it be inherited by IterableMixin
|
| + String toString() => IterableMixinWorkaround.toStringIterable(this);
|
|
|
| int get length => _length;
|
|
|
|
|