| 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 5495a6c53c4b29a9d15d5ef77d029a1fa0bae4c8..f3e4783fec32570a1cc0292837304ed797a224ca 100644
|
| --- a/sdk/lib/_internal/js_runtime/lib/js_array.dart
|
| +++ b/sdk/lib/_internal/js_runtime/lib/js_array.dart
|
| @@ -650,7 +650,7 @@ class ArrayIterator<E> implements Iterator<E> {
|
| // inline moveNext() we might be able to GVN the length and eliminate this
|
| // check on known fixed length JSArray.
|
| if (_length != length) {
|
| - throw new ConcurrentModificationError(_iterable);
|
| + throw throwConcurrentModificationError(_iterable);
|
| }
|
|
|
| if (_index >= length) {
|
|
|