blob: 88aba46c009f3fcd0fb2efa3e3cd72dd43c92655 [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.
/// @assertion
/// void setRange(
/// int start,
/// int end,
/// Iterable<E> iterable, [
/// int skipCount = 0
/// ])
/// ...
/// The [iterable] must have enough objects to fill the range from start to end
/// after skipping [skipCount] objects.
/// @description Checks that it is an error if the [iterable] does not have
/// enough elements after skipping [skipCount] elements.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
Float32x4 pack(v) => new Float32x4.splat(v);
main() {
var l = new Float32x4List(10);
Expect.throws(() {
l.setRange(0, 1, [], 0);
});
Expect.throws(() {
l.setRange(0, 1, [pack(1.0), pack(2.0)], 2);
});
Expect.throws(() {
l.setRange(0, 10, [pack(1.0), pack(2.0), pack(3.0), pack(4.0)], 0);
});
Expect.throws(() {
l.setRange(0, 5, [pack(1.0), pack(2.0), pack(3.0), pack(4.0), pack(5.0)],
1);
});
}