Chromium Code Reviews| Index: sdk/lib/core/list.dart |
| diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart |
| index e86e5aa96c9fd183b11e0701d7fcbb4c7cade9fd..a3df3678696dd369a0eee1f0f37330e1e495ea04 100644 |
| --- a/sdk/lib/core/list.dart |
| +++ b/sdk/lib/core/list.dart |
| @@ -36,7 +36,7 @@ abstract class List<E> implements Collection<E> { |
| * |
| * The length of the returned list is not fixed. |
| */ |
| - factory List.from(Iterable<E> other) { |
| + factory List.from(Iterable other) { |
| var list = new List<E>(); |
| for (var e in other) { |
|
floitsch
2013/01/07 14:59:02
for (E e in other) {
|
| list.add(e); |