Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/lib/js_array.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/lib/js_array.dart (revision 19379) |
| +++ sdk/lib/_internal/compiler/implementation/lib/js_array.dart (working copy) |
| @@ -69,7 +69,7 @@ |
| return IterableMixinWorkaround.expand(this, f); |
| } |
| - void addAll(Collection<E> collection) { |
| + void addAll(Iterable<E> collection) { |
| for (E e in collection) { |
| this.add(e); |
| } |