| Index: tools/dom/src/WrappedList.dart
|
| diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
|
| index c06e8dc923d8016355d1883c725f7ee6764dd1c6..2e28c5c0eaa83b515a73f6bd0228903b2b8ece13 100644
|
| --- a/tools/dom/src/WrappedList.dart
|
| +++ b/tools/dom/src/WrappedList.dart
|
| @@ -16,7 +16,7 @@ class _WrappedList<E extends Node> extends ListBase<E>
|
|
|
| // Iterable APIs
|
|
|
| - Iterator<E> get iterator => new _WrappedIterator(_list.iterator);
|
| + Iterator<E> get iterator => new _WrappedIterator<E>(_list.iterator);
|
|
|
| int get length => _list.length;
|
|
|
|
|