Chromium Code Reviews| Index: lib/core/collection.dart |
| =================================================================== |
| --- lib/core/collection.dart (revision 12179) |
| +++ lib/core/collection.dart (working copy) |
| @@ -6,7 +6,7 @@ |
| * The [Collection] interface is the public interface of all |
| * collections. |
| */ |
| -interface Collection<E> extends Iterable<E> { |
| +abstract class Collection<E> extends Iterable<E> { |
| /** |
| * Applies the function [f] to each element of this collection. |
| */ |