| Index: pkg/third_party/html5lib/lib/src/list_proxy.dart
|
| diff --git a/pkg/third_party/html5lib/lib/src/list_proxy.dart b/pkg/third_party/html5lib/lib/src/list_proxy.dart
|
| index 99adb3fdb44fe1e70ad690db1ded1fadf4ac7489..786e39373a99b82b7f42600bfc847a5ae4375faf 100644
|
| --- a/pkg/third_party/html5lib/lib/src/list_proxy.dart
|
| +++ b/pkg/third_party/html5lib/lib/src/list_proxy.dart
|
| @@ -51,6 +51,7 @@ class ListProxy<E> extends IterableBase<E> implements List<E> {
|
| void addLast(E value) { add(value); }
|
| void addAll(Iterable<E> collection) { _list.addAll(collection); }
|
| void sort([int compare(E a, E b)]) { _list.sort(compare); }
|
| + void shuffle() { _list.shuffle(); }
|
|
|
| int indexOf(E element, [int start = 0]) => _list.indexOf(element, start);
|
| int lastIndexOf(E element, [int start]) => _list.lastIndexOf(element, start);
|
|
|