| Index: sdk/lib/collection/splay_tree.dart
|
| diff --git a/sdk/lib/collection/splay_tree.dart b/sdk/lib/collection/splay_tree.dart
|
| index 2f0c78d26f5d6ed51483fe7b479665d0352c938a..cb6790f63aff382d02ed4c9be87942c046e9e426 100644
|
| --- a/sdk/lib/collection/splay_tree.dart
|
| +++ b/sdk/lib/collection/splay_tree.dart
|
| @@ -792,4 +792,6 @@ class SplayTreeSet<E> extends _SplayTree<E> with IterableMixin<E>, SetMixin<E> {
|
| void clear() { _clear(); }
|
|
|
| Set<E> toSet() => _clone();
|
| +
|
| + String toString() => _setToString(this);
|
| }
|
|
|