| Index: runtime/lib/growable_array.dart
|
| diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
|
| index 5bd89879df7272155a957db3de7e50861f5670bf..d030e64acc1342ec1559fe33186c6a82f510d43c 100644
|
| --- a/runtime/lib/growable_array.dart
|
| +++ b/runtime/lib/growable_array.dart
|
| @@ -310,7 +310,7 @@ class _GrowableObjectArray<T> implements List<T> {
|
| this.length = 0;
|
| }
|
|
|
| - List<T> get reversed => new ReversedListView<T>(this, 0, null);
|
| + Iterable<T> get reversed => new ReversedListIterable<T>(this);
|
|
|
| void sort([int compare(T a, T b)]) {
|
| IterableMixinWorkaround.sortList(this, compare);
|
|
|