Multiple line comment error

@Simeon Not sure if this has been reported before, but I though I’d show it. If you load this code you’ll get a red error line on the 345 error. For every 2 blank lines you add between the --[[ and --]] at the beginning of the code, the red error line will move up a line.

--[[
--]]

function setup()
end

function draw()
    background(0)
    345                     -- this line is an error
end

Woah thank you for this. Will see what’s going on

@dave1707 looks like a problem with the Lua parser we’re using. Probably won’t be able to fix in next release but thank you for making me aware

Edit: never mind the above, managed to fix it!