Similar request as
Input:
const obj = {
a: () => 1,
/* v8 ignore next */
b: () => 2,
}
Expected output:
const obj = {
a: () => 1,
/* v8 ignore next */
b: () => 2,
}
Actual output
const obj = {
a: () => 1,
b: () => 2,
}
Reproduction
https://playground.oxc.rs/?t=ast&options=%7B%22run...
Mentioned in issue below (cc. @marzelc, @saskliutas)
Similar request as
ConditionalExpression'sconsequent#21301Input:
Expected output:
Actual output
Reproduction
https://playground.oxc.rs/?t=ast&options=%7B%22run...
Mentioned in issue below (cc. @marzelc, @saskliutas)
ConditionalExpression'salternateand betweenSwitchStatement'scases#20549 (comment)