Chromium Code Reviews| 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..cec551309de4a7db9a4410f5a49d4393e9fa4bc9 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 Remove this, and let it be inherited by IterableMixin |
|
floitsch
2013/07/08 16:12:34
Add space after "//".
TODOS are always of the form
zarah
2013/07/08 16:57:46
Done.
|
| + String toString() => IterableMixinWorkaround.toStringIterable(this); |
| int get length => _length; |