mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
|
function foo(x, FooBar, some_condition) {
|
||
|
if (some_condition) {
|
||
|
x = new FooBar(1);
|
||
|
} else {
|
||
|
x = new FooBar(2);
|
||
|
}
|
||
|
}
|