Chromium Code Reviews| Index: corelib/src/list.dart |
| =================================================================== |
| --- corelib/src/list.dart (revision 2395) |
| +++ corelib/src/list.dart (working copy) |
| @@ -6,7 +6,7 @@ |
| * A [List] is an indexable collection with a length. It can be of |
| * fixed size or extendable. |
| */ |
| -interface List<E> extends Collection<E> factory ListFactory { |
| +interface List<E> extends Collection<E> default ListFactory<E> { |
| /** |
| * Creates a list of the given [length]. |