mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
ef6a745599
swc_ecma_minifier: - Implement `evaluate` partially. - Store 'expected output' from terser along with our result. swc_ecma_transforms_base: - `fixer`: Don't wrap `+ (a % b)`. swc_ecma_transforms_optimization: - `expr_simplifier`: Preserve this in calls.
17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
function f(condition1, condition2, condition3) {
|
|
if (condition1) {
|
|
if (condition2) return aValue;
|
|
{
|
|
const variable1 = "something";
|
|
if (condition3) {
|
|
const variable2 = "else";
|
|
return anotherValue;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
let aValue = 2,
|
|
anotherValue = 3;
|
|
for (let i = 0; i < 8; ++i) console.log(f(4 & i, 2 & i, 1 & i));
|