blob: ec412ff9853adf0187cf534bf891ff3deb055b82 [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 Iterable<E> reversed
* Returns an [Iterable] of the objects of this [List] in reverse order.
* @description Checks that [reversed] is read-only and can't be set.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<double> list) {
dynamic l = new Float32List.fromList(list);
Expect.throws(() { l.reversed = list; }, (e) => e is NoSuchMethodError);
}
main() {
check([]);
var list = List<double>.filled(255, 0.0);
for (int i = 0; i < 255; ++i) {
list[i] = i * 1.0;
}
check(list);
}