summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1295031.js
blob: 386ffc93abb98fe472bc6afce857cbdf12ece715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try {
    while (true) {
        a = inIon() ? 0 : 300;
        try {
            buf = new Uint8ClampedArray(a);
            assertEq(buf.length, 300);
        } catch (e) {
            assertEqa;
        }
    }
} catch(exc1) {}
loadFile()
function loadFile() {
    try {
        switch (lfRunTypeId) {
          case 1:
            eval();
        }
    } catch (lfVare) {}
}