swc/ecmascript/minifier/tests/terser/compress/conditionals/cond_2/input.js

8 lines
143 B
JavaScript
Raw Normal View History

function foo(x, FooBar, some_condition) {
if (some_condition) {
x = new FooBar(1);
} else {
x = new FooBar(2);
}
}