| Index: tools/dom/src/WrappedList.dart
|
| diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
|
| index 5d649f69fed182fccbee6cbb350bb1530e8ad3f2..2bdbc6a58cdce11a7078355500d9fc453e461e68 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();
|
|
|