Chromium Code Reviews| Index: runtime/lib/typed_data.dart |
| =================================================================== |
| --- runtime/lib/typed_data.dart (revision 31592) |
| +++ runtime/lib/typed_data.dart (working copy) |
| @@ -580,7 +580,8 @@ |
| } |
| void setAll(int index, Iterable iterable) { |
| - IterableMixinWorkaround.setAllList(this, index, iterable); |
| + final end = iterable.length + index; |
| + setRange(index, end, iterable); |
| } |
| void fillRange(int start, int end, [fillValue]) { |