| Index: tools/dom/src/WrappedList.dart
|
| diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
|
| index 7b27218793d3e93b5006bc53b4832f66071c9de3..3c79964003d399ea6a381ecd717b2913cede4f78 100644
|
| --- a/tools/dom/src/WrappedList.dart
|
| +++ b/tools/dom/src/WrappedList.dart
|
| @@ -109,6 +109,8 @@ class _WrappedList<E> implements List<E> {
|
|
|
| int lastIndexOf(E element, [int start]) => _list.lastIndexOf(element, start);
|
|
|
| + void insert(int index, E element) => _list.insert(index, element);
|
| +
|
| E removeAt(int index) => _list.removeAt(index);
|
|
|
| E removeLast() => _list.removeLast();
|
|
|