summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testTableSwitch1.js
blob: db212c0de83d91fefb8ac5dfd141c6f8b1ae966a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function testTableSwitch1() {
    var x = 'miss';
    var i, j = 0;
    for (i = 0; i < 19; i++) {
        switch (x) {
          case 1: case 2: case 3: case 4: case 5: throw "FAIL";
          default: j++;
        }
    }
    assertEq(i, j);
}

testTableSwitch1();