js/src/jit-test/tests/ion/bug799185-5.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:1167a0692bff
1 function foo(aObject)
2 {
3 try {
4 try {
5 if (!aObject)
6 return;
7 }
8 catch (ex if (ex.name == "TypeError")) { }
9 finally {
10 }
11 undefined.x;
12 }
13 catch (ex if (ex.name == "TypeError")) { }
14 catch (ex if (ex.name == "TypeError")) { }
15 finally {
16 }
17 }
18
19 foo(true);

mercurial