| 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..147d1ca07e6e07f98cd07af48572c7364bf8eb4b 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,8 @@ abstract class _HashSetBase<E> extends IterableBase<E> implements Set<E> {
|
| retainWhere(retainSet.contains);
|
| }
|
|
|
| - String toString() => ToString.iterableToString(this);
|
| + // TODO(zarah) Remove this, and let it be inherited by IterableBase
|
| + String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
|
| }
|
|
|
| /**
|
|
|