| Index: tools/dom/src/WrappedList.dart
|
| diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
|
| index ecad3061f6057a9e9620c7f65d8ab8b80bc4c38e..a3365392f8f8b167bf320002cbf299a7421c1c57 100644
|
| --- a/tools/dom/src/WrappedList.dart
|
| +++ b/tools/dom/src/WrappedList.dart
|
| @@ -124,6 +124,8 @@ class _WrappedList<E> implements List<E> {
|
| void insertRange(int start, int length, [E fill]) {
|
| _list.insertRange(start, length, fill);
|
| }
|
| +
|
| + Map<int, E> asMap() => IterableMixinWorkaround.asMapList(_list);
|
| }
|
|
|
| /**
|
|
|