| Index: tools/dom/src/WrappedList.dart
|
| diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
|
| index 375ce7c86412d2a190b695d7e449e52e7d972017..fd3ca952afab0e1ffdf723482ceb75c971742975 100644
|
| --- a/tools/dom/src/WrappedList.dart
|
| +++ b/tools/dom/src/WrappedList.dart
|
| @@ -34,7 +34,7 @@ class _WrappedList<E extends Node> extends ListBase<E>
|
|
|
| void operator []=(int index, E value) { _list[index] = value; }
|
|
|
| - void set length(int newLength) { _list.length = newLength; }
|
| + set length(int newLength) { _list.length = newLength; }
|
|
|
| void sort([int compare(E a, E b)]) { _list.sort(compare); }
|
|
|
|
|