Remove comments

darklua currently removes all comments by default, without applying any rule. Instead of doing this, it should have a proper rule that removes comment from the code.

-- whole line comment
local var = 7 -- trailing comment

It should also support in-line comments

call(1, 2, 3 --[[ foo ]], 4)
Edited by jeparlefrancais