aboutsummaryrefslogtreecommitdiff
path: root/test/input/issue-1482/input.js
blob: 0186e82c8c962497065855cd037ef05531eae4b5 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if (x) foo();
if (x) foo(); else baz();
if (x) foo(); else if (y) bar(); else baz();
if (x) if (y) foo(); else bar(); else baz();
if (x) foo(); else if (y) bar(); else if (z) baz(); else moo();
function f() {
if (x) foo();
if (x) foo(); else baz();
if (x) foo(); else if (y) bar(); else baz();
if (x) if (y) foo(); else bar(); else baz();
if (x) foo(); else if (y) bar(); else if (z) baz(); else moo();
}