swc/ecmascript/minifier/tests/terser/compress/issue-640/cond_5/input.js

15 lines
240 B
JavaScript
Raw Normal View History

if (some_condition()) {
if (some_other_condition()) {
do_something();
} else {
alternate();
}
} else {
alternate();
}
if (some_condition()) {
if (some_other_condition()) {
do_something();
}
}