| Index: sdk/lib/_collection_dev/list.dart
|
| diff --git a/sdk/lib/_collection_dev/list.dart b/sdk/lib/_collection_dev/list.dart
|
| index 6d955aef6a8d54477baac5d714820f3affbf2dbd..11811dfaa186c3fef9f34af214b9b0585f50b7cf 100644
|
| --- a/sdk/lib/_collection_dev/list.dart
|
| +++ b/sdk/lib/_collection_dev/list.dart
|
| @@ -70,7 +70,7 @@ abstract class FixedLengthListMixin<E> {
|
| "Cannot remove from a fixed-length list");
|
| }
|
|
|
| - void removeRange(int start, int length) {
|
| + void removeRange(int start, int end) {
|
| throw new UnsupportedError(
|
| "Cannot remove from a fixed-length list");
|
| }
|
| @@ -165,7 +165,7 @@ abstract class UnmodifiableListMixin<E> {
|
| "Cannot modify an unmodifiable list");
|
| }
|
|
|
| - void removeRange(int start, int length) {
|
| + void removeRange(int start, int end) {
|
| throw new UnsupportedError(
|
| "Cannot remove from an unmodifiable list");
|
| }
|
|
|