| Index: sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| index e33ae3f6b8eac2ebf6f8fc63d8166f8062303044..91a6782fd96f3eaf8d5eb48e7fc76b80ae8595f8 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/js_array.dart
|
| @@ -230,7 +230,7 @@ class JSArray<E> implements List<E> {
|
|
|
| bool every(bool f(E element)) => IterableMixinWorkaround.every(this, f);
|
|
|
| - List<E> get reversed => IterableMixinWorkaround.reversedList(this);
|
| + Iterable<E> get reversed => IterableMixinWorkaround.reversedList(this);
|
|
|
| void sort([int compare(E a, E b)]) {
|
| checkMutable(this, 'sort');
|
|
|