comparison: js/src/jit-test/tests/ion/try-catch-1.js
js/src/jit-test/tests/ion/try-catch-1.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function F() { |
|
2 try { |
|
3 var T = {}; |
|
4 throw 12; |
|
5 } catch (e) { |
|
6 // Don't throw. |
|
7 T.x = 5; |
|
8 } |
|
9 } |
|
10 F(); |
|
11 F(); |
|
12 F(); |