blob: d547bc2ef4d56b8dc522e152c3d6849e7cc040ff [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 final E last
* Returns the last element.
* @description Checks that [last] is final and can't be set.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
pack(v) => new Float32x4.splat(v);
void check(array) {
var l = new Float32x4List.fromList(array);
try {
l.last = pack(.0);
Expect.fail("[last] should be final");
} on NoSuchMethodError catch(ok) {}
}
void checkClear(length) {
var l = new Float32x4List(length);
try {
l.last = pack(.0);
Expect.fail("[last] should be final");
} on NoSuchMethodError catch(ok) {}
}
main() {
check([pack(1.0)]);
check([pack(1.0), pack(2.0), pack(3.0), pack(4.0), pack(5.0)]);
check([pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0),
pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0),
pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0),
pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0),
pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(0.0), pack(1.0)]);
checkClear(1);
checkClear(100);
}