lang-bootstrap/06/main.lua

44 lines
1 KiB
Lua
Raw Normal View History

local pg = require("parser-gen.parser-gen")
local peg = require "parser-gen.peg-parser"
local errs = {errMissingThen = "Missing Then"} -- one custom error
pg.setlabels(errs)
local f = assert(io.open("zig.peg", "r"))
local zig_grammar = f:read("*all")
f:close()
pg.compile(zig_grammar)
-- local function dump(value, call_indent)
-- if not call_indent then
-- call_indent = ""
-- end
-- local indent = call_indent .. " "
-- local output = ""
-- if type(value) == "table" then
-- output = output .. "{"
-- local first = true
-- for inner_key, inner_value in pairs ( value ) do
-- if not first then
-- output = output .. ", "
-- else
-- first = false
-- end
-- output = output .. "\n" .. indent
-- output = output .. inner_key .. " = " .. dump ( inner_value, indent )
-- end
-- output = output .. "\n" .. call_indent .. "}"
-- elseif type (value) == "userdata" then
-- output = "userdata"
-- else
-- output = value
-- end
-- return output
-- end
-- print(dump(res, ""))