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
|
|
|
|
2017-06-29 00:16:06 +02:00
|
|
|
try {
|
|
|
|
new Array(1.5);
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#1.1: new Array(1.5) throw RangeError. Actual: ' + (new Array(1.5)));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
2017-06-29 00:16:06 +02:00
|
|
|
try {
|
|
|
|
new Array(Number.MAX_VALUE);
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#2.1: new Array(Number.MAX_VALUE) throw RangeError. Actual: ' + (new Array(Number.MAX_VALUE)));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
2017-06-29 00:16:06 +02:00
|
|
|
try {
|
|
|
|
new Array(Number.MIN_VALUE);
|
2021-07-21 20:53:23 +02:00
|
|
|
throw new Test262Error('#3.1: new Array(Number.MIN_VALUE) throw RangeError. Actual: ' + (new Array(Number.MIN_VALUE)));
|
2018-02-15 23:40:02 +01:00
|
|
|
} catch (e) {
|
2021-08-10 23:51:54 +02:00
|
|
|
assert.sameValue(
|
|
|
|
e instanceof RangeError,
|
|
|
|
true,
|
|
|
|
'The result of evaluating (e instanceof RangeError) is expected to be true'
|
|
|
|
);
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|