blob: b064918b675b0dc8830e25735756d762532f395c [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 entry 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) {
var l = new Float32List(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]);
var list = new List(127);
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]);
}