Fix Lua 5.1/Lua 5.2/LuaJIT compat
This commit is contained in:
parent
282dbabb7e
commit
fd48534de3
10
parser.lua
10
parser.lua
|
@ -71,10 +71,16 @@ 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
|
||||
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
|
||||
end
|
||||
|
|
2
test.lua
2
test.lua
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue