comparison: js/src/jit-test/tests/ion/try-catch-7.js
js/src/jit-test/tests/ion/try-catch-7.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 // The second for-loop is only reachable via the catch block, which Ion |
|
2 // does not compile. |
|
3 for (;;) { |
|
4 try { |
|
5 throw 3; |
|
6 } catch(e) { |
|
7 break; |
|
8 } |
|
9 } |
|
10 for (var i = 0; i < 15; i++) {} |