summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug964229.js
blob: 7c018b5105b3ad7ea8460aaee26cf81da326485d (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
a = 'a';
b = 0
var i=0;
exhaustiveSliceTest("exhaustive slice test 1", a);
var i=1;
exhaustiveSliceTest("exhaustive slice test 2", b);
exhaustiveSliceTest("exhaustive slice test 3", 0);
var i=0;
var executed = false;
try {
    exhaustiveSliceTest("exhaustive slice test 4", 0);
} catch(e) {
    executed = true;
}
assertEq(executed, true);

function exhaustiveSliceTest(testname, a) {
    print(testname)
    for (var y = 0; y < 2; y++)
    {
        print(a.length)
        if (a.length == 2 || i == 1)
            return 0;
        var b  = a.slice(0,0);
    }
}