Index: tools/dom/src/WrappedList.dart |
diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart |
index ecad3061f6057a9e9620c7f65d8ab8b80bc4c38e..3343db6cbcd6b1ee0fffc06e323b569a784a1767 100644 |
--- a/tools/dom/src/WrappedList.dart |
+++ b/tools/dom/src/WrappedList.dart |
@@ -36,7 +36,7 @@ class _WrappedList<E> implements List<E> { |
bool any(bool f(E element)) => _list.any(f); |
- List<E> toList({ bool growable: false }) => |
+ List<E> toList({ bool growable: true }) => |
new List.from(_list, growable: growable); |
Set<E> toSet() => _list.toSet(); |