| Index: sdk/lib/collection/collections.dart
|
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart
|
| index c5b3d73081b11c56f999e9775bdff9f4aa463cf3..949b69dfa0128442d93ee878aba2df1158da614b 100644
|
| --- a/sdk/lib/collection/collections.dart
|
| +++ b/sdk/lib/collection/collections.dart
|
| @@ -355,6 +355,10 @@ class IterableMixinWorkaround {
|
| if (compare == null) compare = Comparable.compare;
|
| Sort.sort(l, compare);
|
| }
|
| +
|
| + static Map<int, dynamic> asMapList(List l) {
|
| + return new ListMapView(l);
|
| + }
|
| }
|
|
|
| class Collections {
|
|
|