The goal of stage 06 is to try parse zig synax in lua. I pulled in lpeglable 1.2.0 and parser-gen off github to get started. All of this needs to be cleaned up rather soon. Lua boostraps using tcc and musl from the previous stage. Since musl 0.6.0 doesn't support dynamic linking this build of lua doesn't support shared libraries. I couldn't easily patch musl with dlopen and friends so instead I link statically and call deps with c api.
30 lines
715 B
Lua
30 lines
715 B
Lua
local re = require 'relabel'
|
|
|
|
local g = re.compile[[
|
|
S <- Id List
|
|
List <- !. / Comma Id List
|
|
Id <- Sp [a-z]+ / %{2}
|
|
Comma <- Sp ',' / %{3}
|
|
Sp <- %s*
|
|
]]
|
|
|
|
function mymatch (g, s)
|
|
local r, e, sfail = g:match(s)
|
|
if not r then
|
|
local line, col = re.calcline(s, #s - #sfail)
|
|
local msg = "Error at line " .. line .. " (col " .. col .. ")"
|
|
if e == 1 then
|
|
return r, msg .. ": expecting an identifier before '" .. sfail .. "'"
|
|
elseif e == 2 then
|
|
return r, msg .. ": expecting ',' before '" .. sfail .. "'"
|
|
else
|
|
return r, msg
|
|
end
|
|
end
|
|
return r
|
|
end
|
|
|
|
print(mymatch(g, "one,two"))
|
|
print(mymatch(g, "one two"))
|
|
print(mymatch(g, "one,\n two,\nthree,"))
|
|
|