summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Number/15.7.4.2.js
blob: 36443394cb8a440887d28eaa3483f3ac55e29242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

assertEq(raisesException(TypeError)('Number.prototype.toString.call(true)'), true);
assertEq(raisesException(TypeError)('Number.prototype.toString.call("")'), true);
assertEq(raisesException(TypeError)('Number.prototype.toString.call({})'), true);
assertEq(raisesException(TypeError)('Number.prototype.toString.call(null)'), true);
assertEq(raisesException(TypeError)('Number.prototype.toString.call([])'), true);
assertEq(raisesException(TypeError)('Number.prototype.toString.call(undefined)'), true);
assertEq(raisesException(TypeError)('Number.prototype.toString.call(new Boolean(true))'), true);

assertEq(completesNormally('Number.prototype.toString.call(42)'), true);
assertEq(completesNormally('Number.prototype.toString.call(new Number(42))'), true);

function testAround(middle)
{
    var range = 260;
    var low = middle - range/2;
    for (var i = 0; i < range; ++i)
        assertEq(low + i, parseInt(String(low + i)));
}

testAround(-Math.pow(2,32));
testAround(-Math.pow(2,16));
testAround(0);
testAround(+Math.pow(2,16));
testAround(+Math.pow(2,32));

reportCompare(true, true);