comparison: js/src/jit-test/tests/basic/bug652646.js
js/src/jit-test/tests/basic/bug652646.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function foo() { |
|
2 try { |
|
3 return 0; |
|
4 } catch (e) { |
|
5 try { |
|
6 return 1; |
|
7 } catch (e) { |
|
8 } |
|
9 } |
|
10 } |
|
11 foo(); |