| 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 ad369ab9e24e3a85168bcb7633163b0800455d79..78e53b1539a43fd9bdaa48ad2c259d8e774c9039 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) {
|
|
|