Chromium Code Reviews| Index: pkg/collection/lib/wrappers.dart |
| diff --git a/pkg/collection/lib/wrappers.dart b/pkg/collection/lib/wrappers.dart |
| index c9e919d5c24c5d5a2b29a4135e7241cd8198990a..2034174259151097f59ab8bb6bd23e27661be4ff 100644 |
| --- a/pkg/collection/lib/wrappers.dart |
| +++ b/pkg/collection/lib/wrappers.dart |
| @@ -254,6 +254,8 @@ class DelegatingSet<E> extends DelegatingIterable<E> implements Set<E> { |
| } |
| Set<E> union(Set<E> other) => _setBase.union(other); |
| + |
| + Set<E> toSet() => new DelegatingSet<E>(_setBase.toSet()); |
| } |
| /** |