packages feed

glualint-1.28.0: tests/golden/data/output/various-comments.lua

-- Comment before if-statement
if false then -- same-line comment
    -- print("TODO")
end

if true then
    a = 2 -- bar
end

-- Comment before if-statement
if false then --same-line comment
    -- if-statement with multiple statements
    a = 1 -- comment after a statement
    b = 2
end

-- Comment before if-statement
if true then --[[ multiline comment on same line]]
    return
end

-- Comment before if-statement
if true then
    --[[ multiline comment on next line]]
    return
end

-- Comment before if-statement
if true then
    return -- comment after return on same line
end

-- Comment before if-statement
if true then
    return
    -- comment after return on new line
end

-- Comment before if-statement
if true then return end
-- comment after end
if true or false then --[[ comment in condition]] -- single line comment in condition
    return
end

for var = 1, 10 do -- same-line comment
    -- print("TODO")
end

for k, v in pairs(player.GetAll()) do -- same-line comment
    -- print("TODO")
end

function foo() -- same-line-comment
end

local function foo() -- same-line-comment
end

-- Rendering of comments after return (or instead of return) reported here:
-- https://github.com/FPtje/GLuaFixer/issues/170#issuecomment-1828253356
function foo()
    -- Comment before return
    return 1, 2, 3 -- comment on same line as return
    -- comment after return
end