| Index: sdk/lib/collection/collections.dart
|
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart
|
| index 13348fc987129596e7a124f238cfa4127e6b72ac..f9e83eed8318f1e96d11b4265bf21b888b88a9e6 100644
|
| --- a/sdk/lib/collection/collections.dart
|
| +++ b/sdk/lib/collection/collections.dart
|
| @@ -337,6 +337,10 @@ class IterableMixinWorkaround {
|
| return new SkipWhileIterable(iterable, test);
|
| }
|
|
|
| + static List reversedList(List l) {
|
| + return new ReversedListView(l, 0, null);
|
| + }
|
| +
|
| static void sortList(List l, int compare(a, b)) {
|
| if (compare == null) compare = Comparable.compare;
|
| Sort.sort(l, compare);
|
|
|