Chromium Code Reviews| Index: sdk/lib/collection/list.dart |
| diff --git a/sdk/lib/collection/list.dart b/sdk/lib/collection/list.dart |
| index 354e59edae919874b110ec34348e3a01d5d111c9..043649a03e7d87401e4c39f0ad24c28a24fa9a1b 100644 |
| --- a/sdk/lib/collection/list.dart |
| +++ b/sdk/lib/collection/list.dart |
| @@ -422,4 +422,6 @@ abstract class ListMixin<E> implements List<E> { |
| } |
| Iterable<E> get reversed => new ReversedListIterable(this); |
| + |
| + String toString() => ToString.iterableToString(this); |
| } |