py-lua-parser icon indicating copy to clipboard operation
py-lua-parser copied to clipboard

Comments in the end of Node will be skipped

Open DoooReyn opened this issue 2 years ago • 0 comments

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

DoooReyn avatar Sep 24 '22 07:09 DoooReyn