comparison: js/src/jit-test/tests/basic/bug934789-1.js
js/src/jit-test/tests/basic/bug934789-1.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 if (typeof dis === "function") { |
|
2 (function() { |
|
3 function foo() {} |
|
4 |
|
5 dis(function bar(e) { |
|
6 try { |
|
7 (function() { e; }); |
|
8 } catch (e) { |
|
9 foo(); |
|
10 } |
|
11 }); |
|
12 }()); |
|
13 } |