| Index: sdk/lib/_internal/js_runtime/lib/js_array.dart
|
| diff --git a/sdk/lib/_internal/js_runtime/lib/js_array.dart b/sdk/lib/_internal/js_runtime/lib/js_array.dart
|
| index 004127bc9cd29cc1d77ff7447e27194975b7e4f0..447c749282b4ebc4c4280eb7486137c599536e72 100644
|
| --- a/sdk/lib/_internal/js_runtime/lib/js_array.dart
|
| +++ b/sdk/lib/_internal/js_runtime/lib/js_array.dart
|
| @@ -146,7 +146,7 @@ class JSArray<E> extends Interceptor implements List<E>, JSIndexable {
|
| void insertAll(int index, Iterable<E> iterable) {
|
| checkGrowable('insertAll');
|
| RangeError.checkValueInInterval(index, 0, this.length, "index");
|
| - if (iterable is! EfficientLength) {
|
| + if (iterable is! EfficientLengthIterable) {
|
| iterable = iterable.toList();
|
| }
|
| int insertionLength = iterable.length;
|
| @@ -463,7 +463,7 @@ class JSArray<E> extends Interceptor implements List<E>, JSIndexable {
|
| void replaceRange(int start, int end, Iterable<E> replacement) {
|
| checkGrowable('replace range');
|
| RangeError.checkValidRange(start, end, this.length);
|
| - if (replacement is! EfficientLength) {
|
| + if (replacement is! EfficientLengthIterable) {
|
| replacement = replacement.toList();
|
| }
|
| int removeLength = end - start;
|
|
|