blob: 50f6f3432fd962b00c747ffd6f9c95d1a124fa15 [file] [log] [blame]
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @assertion void replaceRange(int start, int end, Iterable<E> replacement)
/// Removes the objects in the range start inclusive to end exclusive and
/// inserts the contents of replacement in its place.
/// ...
/// This method does not work on fixed-length lists, even when replacement has
/// the same number of elements as the replaced range.
/// @description Checks that [UnsupportedError] is thrown since [Int32List] is a
/// fixed-length list.
/// @note undocumented
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<int> list) {
var l = new Int32List.fromList(list);
var length = l.length;
try {
l.replaceRange(0, 1, [0]);
Expect.fail("This operation should not be supported");
} on UnsupportedError {};
Expect.equals(length, l.length);
try {
l.replaceRange(0, 100, [0, 1, 2]);
Expect.fail("This operation should not be supported");
} on UnsupportedError {};
Expect.equals(length, l.length);
}
main() {
check([]);
check([1]);
check([1, 2, 3, 4, 5]);
}