| Index: runtime/lib/typed_data.dart
|
| diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart
|
| index 9e2a114e097ba57f770181caeb47b2946c65a1e7..c1e41c9891cba07576789b4cc66d1742bd90ce70 100644
|
| --- a/runtime/lib/typed_data.dart
|
| +++ b/runtime/lib/typed_data.dart
|
| @@ -410,8 +410,8 @@ abstract class _TypedListBase {
|
| IterableMixinWorkaround.sortList(this, compare);
|
| }
|
|
|
| - void shuffle() {
|
| - IterableMixinWorkaround.shuffleList(this);
|
| + void shuffle([Random random]) {
|
| + IterableMixinWorkaround.shuffleList(this, random);
|
| }
|
|
|
| int indexOf(element, [int start = 0]) {
|
|
|