1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
4 <script src=
"../../resources/js-test.js"></script>
10 "This test checks that toString() round-trip on a function that has a else clause directly \
11 followed by an else clause puts whitespace between the two on decompilation."
15 function testTryElse() { if (x
) {} else try {} finally {} }
17 unevalf = function(x
) { return '(' + x
.toString() + ')'; };
20 shouldBe("unevalf(eval(unevalf(testTryElse)))", "unevalf(testTryElse)");