| Index: tools/dom/src/WrappedList.dart
|
| diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
|
| index 3343db6cbcd6b1ee0fffc06e323b569a784a1767..7b27218793d3e93b5006bc53b4832f66071c9de3 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);
|
| }
|
|
|
| /**
|
|
|