Fix Lua 5.1/Lua 5.2/LuaJIT compat

This commit is contained in:
SoniEx2 2019-04-07 12:54:48 -03:00
parent 282dbabb7e
commit fd48534de3
2 changed files with 10 additions and 4 deletions

View File

@ -71,9 +71,15 @@ local function get_next_common(state, in_pos, token)
recheck = true
end
end
for i, hook in ipairs(st) do
if hook then -- allow overriding/disabling hooks
hook(state, token, rule)
do -- post-hooks CANNOT USE ipairs HERE BECAUSE Lua 5.1/5.2
local pos = 1
local hook = st[pos]
while hook ~= nil do
if hook then
hook(state, token, rule)
end
pos = pos + 1
hook = st[pos]
end
end
state[STATE] = transition -- may be nil or false

View File

@ -315,7 +315,7 @@ end -- keywords
do -- FUCK
local luatokens = require "luatokens"
local luatokens_file = io.open("./luatokens.lua", "r"):read((_VERSION == "5.1" or _VERSION == "5.2") and "*a" or "a")
local luatokens_file = io.open("./luatokens.lua", "r"):read((_VERSION == "Lua 5.1" or _VERSION == "Lua 5.2") and "*a" or "a")
local tokens = luatokens.defs
local state, err, etoken, estate = parser.parse(tokens, luatokens_file)
local case = case()