py-lua-parser
py-lua-parser copied to clipboard
Comments in the end of Node will be skipped
Examples:
Chunk Tail
local x = 1
-- comments will never be visited
or Function Tail
function ok()
--print('comments will never be visited')
end
or Just Comments
-- comments will never be visited