2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
2017-06-29 00:16:06 +02:00
|
|
|
esid: sec-array-len
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
If the argument len is a Number and ToUint32(len) is not equal to len,
|
|
|
|
a RangeError exception is thrown
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.4.2.2_A2.2_T3
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Use try statement. len = 1.5, Number.MAX_VALUE, Number.MIN_VALUE
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
2017-06-29 00:16:06 +02:00
|
|
|
try {
|
|
|
|
new Array(1.5);
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#1.1: new Array(1.5) throw RangeError. Actual: ' + (new Array(1.5)));
|
2018-02-09 18:09:47 +01:00
|
|
|
} catch(e) {
|
2011-09-07 08:35:18 +02:00
|
|
|
if ((e instanceof RangeError) !== true) {
|
|
|
|
$ERROR('#1.2: new Array(1.5) throw RangeError. Actual: ' + (e));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#2
|
2017-06-29 00:16:06 +02:00
|
|
|
try {
|
|
|
|
new Array(Number.MAX_VALUE);
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#2.1: new Array(Number.MAX_VALUE) throw RangeError. Actual: ' + (new Array(Number.MAX_VALUE)));
|
2018-02-09 18:09:47 +01:00
|
|
|
} catch(e) {
|
2011-09-07 08:35:18 +02:00
|
|
|
if ((e instanceof RangeError) !== true) {
|
|
|
|
$ERROR('#2.2: new Array(Number.MAX_VALUE) throw RangeError. Actual: ' + (e));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#3
|
2017-06-29 00:16:06 +02:00
|
|
|
try {
|
|
|
|
new Array(Number.MIN_VALUE);
|
2011-09-07 08:35:18 +02:00
|
|
|
$ERROR('#3.1: new Array(Number.MIN_VALUE) throw RangeError. Actual: ' + (new Array(Number.MIN_VALUE)));
|
2018-02-09 18:09:47 +01:00
|
|
|
} catch(e) {
|
2011-09-07 08:35:18 +02:00
|
|
|
if ((e instanceof RangeError) !== true) {
|
|
|
|
$ERROR('#3.2: new Array(Number.MIN_VALUE) throw RangeError. Actual: ' + (e));
|
|
|
|
}
|
|
|
|
}
|