blob: 5bb04a5cf3ee4425c6ea6ae619550e41029c22ea [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 E operator [](int index)
/// Returns the object at the given index in the list or ... .
/// @description Checks that the element at the given index is returned.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<double> list) {
var l = new Float32List.fromList(list);
for (int i = 0; i < list.length; ++i) {
Expect.identical(l.elementAt(i), l[i]);
}
}
main() {
check([]);
check([1.0]);
var list = List<double>.filled(255, 0.0);
for (int i = 0; i < 255; ++i) {
list[i] = i * 1.0;
}
check(list);
}