illuaminate icon indicating copy to clipboard operation
illuaminate copied to clipboard

Redundant parens fixer should add spaces

Open SquidDev opened this issue 3 years ago • 2 comments

Consider the following:

print(not(a))

While somewhat dubious Lua, it is technically valid. However, when removing the redundant parenthesis, Lua rewrites this as the following, which is clearly not the same!

print(nota)

SquidDev avatar Oct 08 '20 15:10 SquidDev