| Index: pkg/collection/lib/wrappers.dart
|
| diff --git a/pkg/collection/lib/wrappers.dart b/pkg/collection/lib/wrappers.dart
|
| index ec78f5c5384b96715fc48b3c998f983da5fde021..1097c3ef17771e03486537e3129735e25543ff5d 100644
|
| --- a/pkg/collection/lib/wrappers.dart
|
| +++ b/pkg/collection/lib/wrappers.dart
|
| @@ -89,6 +89,8 @@ class DelegatingIterable<E> implements Iterable<E> {
|
| Set<E> toSet() => _base.toSet();
|
|
|
| Iterable<E> where(bool test(E element)) => _base.where(test);
|
| +
|
| + String toString() => _base.toString();
|
| }
|
|
|
|
|
| @@ -331,4 +333,6 @@ class DelegatingMap<K, V> implements Map<K, V> {
|
| V remove(Object key) => _base.remove(key);
|
|
|
| Iterable<V> get values => _base.values;
|
| +
|
| + String toString() => _base.toString();
|
| }
|
|
|