sweet-js/sweet-core

Not renaming variables inside parens

matiasmorant opened this issue · 3 comments

x => (x) compiles to x_34 => (x) rather than x_34 => (x_34). On the other hand, x => x compiles correctly to x_34 => x_34

why are variable names renamed in the first place? Is there a way to disable this behavior?

For Hygiene.