| Index: sdk/lib/collection/collections.dart
|
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart
|
| index 46e3ac278e35bacf98fcae0421b5145dfd6fc9aa..09a0778250d70de8b6329a1bf192e88fd5e52743 100644
|
| --- a/sdk/lib/collection/collections.dart
|
| +++ b/sdk/lib/collection/collections.dart
|
| @@ -384,6 +384,10 @@ class IterableMixinWorkaround {
|
|
|
| Arrays.copy(from, startFrom, list, start, length);
|
| }
|
| +
|
| + static Map<int, dynamic> asMapList(List l) {
|
| + return new ListMapView(l);
|
| + }
|
| }
|
|
|
| class Collections {
|
|
|