Chromium Code Reviews| Index: sdk/lib/collection/hash_set.dart |
| diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart |
| index 86c69c81ee5f4346fea08f0b42fbfc8bec58300f..0481ce470e54d767ca047662dd7f0fb5eeafb369 100644 |
| --- a/sdk/lib/collection/hash_set.dart |
| +++ b/sdk/lib/collection/hash_set.dart |
| @@ -6,6 +6,7 @@ part of dart.collection; |
| /** Common parts of [HashSet] and [LinkedHashSet] implementations. */ |
| abstract class _HashSetBase<E> extends IterableBase<E> implements Set<E> { |
| + |
| // Set. |
| bool containsAll(Iterable<Object> other) { |
| for (Object object in other) { |
| @@ -53,7 +54,7 @@ abstract class _HashSetBase<E> extends IterableBase<E> implements Set<E> { |
| retainWhere(retainSet.contains); |
| } |
| - String toString() => ToString.iterableToString(this); |
| + String toString() => IterableMixinWorkaround.toStringIterable(this); |
|
floitsch
2013/07/08 16:12:34
Add TODO too.
zarah
2013/07/08 16:57:46
Done.
|
| } |
| /** |