| Index: sdk/lib/collection/hash_set.dart
|
| diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart
|
| index ff95b4306541a488d0bb5daf90f5df34278f0aa6..026777863d591f5d16a942a47acd96fad1f03f5a 100644
|
| --- a/sdk/lib/collection/hash_set.dart
|
| +++ b/sdk/lib/collection/hash_set.dart
|
| @@ -58,6 +58,8 @@ abstract class _HashSetBase<E> extends IterableBase<E> implements Set<E> {
|
| return result;
|
| }
|
|
|
| + Set<E> cloneEmpty() => _newSet();
|
| +
|
| Set<E> toSet() => _newSet()..addAll(this);
|
|
|
| String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
|
|
|