You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like Lua 5.3's bytecode read out is a bit different, so Lua Lint does not parse if the compiler is Lua 5.3
You'll notice, for example, that SETGLOBAL and GETGLOBAL are now GETTABUP and SETTABUP on the _ENV table. Other changes like that need to be considered for Lua Lint to work.
It looks like Lua 5.3's bytecode read out is a bit different, so Lua Lint does not parse if the compiler is Lua 5.3
You'll notice, for example, that
SETGLOBAL
andGETGLOBAL
are nowGETTABUP
andSETTABUP
on the_ENV
table. Other changes like that need to be considered for Lua Lint to work.The text was updated successfully, but these errors were encountered: