| Index: sdk/lib/_collection_dev/list.dart
|
| diff --git a/sdk/lib/_collection_dev/list.dart b/sdk/lib/_collection_dev/list.dart
|
| index 3ab841d71ba273d25b4fa41b0f79f06beeb08b3e..ed01c1482f96867f0de47cf6beea0c2cc61aaef7 100644
|
| --- a/sdk/lib/_collection_dev/list.dart
|
| +++ b/sdk/lib/_collection_dev/list.dart
|
| @@ -160,7 +160,7 @@ abstract class UnmodifiableListMixin<E> {
|
| "Cannot remove from an unmodifiable list");
|
| }
|
|
|
| - void setRange(int start, int length, List<E> from, [int startFrom]) {
|
| + void setRange(int start, int end, List<E> from, [int startFrom]) {
|
| throw new UnsupportedError(
|
| "Cannot modify an unmodifiable list");
|
| }
|
|
|