mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
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);
|
|
}
|
|
}
|