comparison: js/src/jit-test/tests/basic/bug934789-1.js
js/src/jit-test/tests/basic/bug934789-1.js
- changeset 0
- 6474c204b198
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 } |