blob: cb24f49419a125236499f3c0a4e864f6a2c608f3 [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 operator []=(int index, int value)
/// Sets the value at the given index in the list to value...
/// @description Checks that the entry at the given index is set.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<double> list) {
var l = new Float64List(list.length);
for (int i = 0; i < list.length; ++i) {
l[i] = list.elementAt(i);
Expect.identical(list.elementAt(i), l.elementAt(i));
}
}
main() {
check([1.0]);
check([
0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0,
14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0
]);
}