comparison: js/src/jit-test/tests/basic/bug652646.js
js/src/jit-test/tests/basic/bug652646.js
- changeset 0
- 6474c204b198
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(); |