Updated for optional metadata support.
This commit is contained in:
parent
885c42bcfe
commit
4c693d7474
@ -32,7 +32,8 @@ immediately:
|
|||||||
end
|
end
|
||||||
local lua_fn_args = table.concat(args, ", ");
|
local lua_fn_args = table.concat(args, ", ");
|
||||||
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
|
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
|
||||||
local code_location = ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop);
|
local code_location = (metadata and ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop)
|
||||||
|
or "<dynamically generated>");
|
||||||
return {statements=([[
|
return {statements=([[
|
||||||
nomsu:define_compile_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
nomsu:define_compile_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
||||||
]]..body_code.."\\n"..[[
|
]]..body_code.."\\n"..[[
|
||||||
@ -67,8 +68,8 @@ immediately:
|
|||||||
end
|
end
|
||||||
local lua_fn_args = table.concat(args, ", ");
|
local lua_fn_args = table.concat(args, ", ");
|
||||||
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
|
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
|
||||||
assert(def_metadata, "No metadata found for: "..tostring(nomsu.compilestack[#nomsu.compilestack]));
|
local code_location = (metadata and ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop)
|
||||||
local code_location = ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop);
|
or "<dynamically generated>");
|
||||||
return {statements=[[
|
return {statements=[[
|
||||||
nomsu:define_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
nomsu:define_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
||||||
]]..body_code.."\\n"..[[
|
]]..body_code.."\\n"..[[
|
||||||
@ -100,7 +101,8 @@ immediately:
|
|||||||
for i, a in ipairs(args) do replacements[i] = a.."="..a; end
|
for i, a in ipairs(args) do replacements[i] = a.."="..a; end
|
||||||
replacements = "{"..table.concat(replacements, ", ").."}";
|
replacements = "{"..table.concat(replacements, ", ").."}";
|
||||||
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
|
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
|
||||||
local code_location = ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop);
|
local code_location = (metadata and ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop)
|
||||||
|
or "<dynamically generated>");
|
||||||
return {statements=[[
|
return {statements=[[
|
||||||
nomsu:define_compile_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
nomsu:define_compile_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
|
||||||
local template = nomsu:parse(]]..template..[[, ]]..repr(def_metadata.filename)..[[);
|
local template = nomsu:parse(]]..template..[[, ]]..repr(def_metadata.filename)..[[);
|
||||||
@ -175,7 +177,7 @@ immediately:
|
|||||||
compile [run %code] to {..}
|
compile [run %code] to {..}
|
||||||
expr: ".."
|
expr: ".."
|
||||||
nomsu:run(\(%code as lua expr), '\
|
nomsu:run(\(%code as lua expr), '\
|
||||||
=lua "nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]].filename"
|
=lua "nomsu:get_line_number(nomsu.compilestack[#nomsu.compilestack])"
|
||||||
..')
|
..')
|
||||||
parse [enable debugging] as: lua> "nomsu.debug = true;"
|
parse [enable debugging] as: lua> "nomsu.debug = true;"
|
||||||
parse [disable debugging] as: lua> "nomsu.debug = false;"
|
parse [disable debugging] as: lua> "nomsu.debug = false;"
|
||||||
|
71
nomsu.lua
71
nomsu.lua
@ -23,11 +23,21 @@ do
|
|||||||
local _obj_0 = table
|
local _obj_0 = table
|
||||||
insert, remove, concat = _obj_0.insert, _obj_0.remove, _obj_0.concat
|
insert, remove, concat = _obj_0.insert, _obj_0.remove, _obj_0.concat
|
||||||
end
|
end
|
||||||
local _Tuple = immutable(nil)
|
local Tuple = immutable(nil, {
|
||||||
local Tuple
|
name = "Tuple",
|
||||||
Tuple = function(t)
|
__tostring = function(self)
|
||||||
return _Tuple(table.unpack(t))
|
return "Tuple(" .. tostring(concat((function()
|
||||||
end
|
local _accum_0 = { }
|
||||||
|
local _len_0 = 1
|
||||||
|
for _index_0 = 1, #self do
|
||||||
|
local x = self[_index_0]
|
||||||
|
_accum_0[_len_0] = repr(x)
|
||||||
|
_len_0 = _len_0 + 1
|
||||||
|
end
|
||||||
|
return _accum_0
|
||||||
|
end)(), ", ")) .. ")"
|
||||||
|
end
|
||||||
|
})
|
||||||
local cached
|
local cached
|
||||||
cached = function(fn)
|
cached = function(fn)
|
||||||
local cache = setmetatable({ }, {
|
local cache = setmetatable({ }, {
|
||||||
@ -59,6 +69,19 @@ lpeg.setmaxstack(10000)
|
|||||||
local P, R, V, S, Cg, C, Cp, B, Cmt
|
local P, R, V, S, Cg, C, Cp, B, Cmt
|
||||||
P, R, V, S, Cg, C, Cp, B, Cmt = lpeg.P, lpeg.R, lpeg.V, lpeg.S, lpeg.Cg, lpeg.C, lpeg.Cp, lpeg.B, lpeg.Cmt
|
P, R, V, S, Cg, C, Cp, B, Cmt = lpeg.P, lpeg.R, lpeg.V, lpeg.S, lpeg.Cg, lpeg.C, lpeg.Cp, lpeg.B, lpeg.Cmt
|
||||||
local Types = { }
|
local Types = { }
|
||||||
|
local type_tostring
|
||||||
|
type_tostring = function(self)
|
||||||
|
return tostring(self.name) .. "(" .. tostring(concat((function()
|
||||||
|
local _accum_0 = { }
|
||||||
|
local _len_0 = 1
|
||||||
|
for _index_0 = 1, #self do
|
||||||
|
local x = self[_index_0]
|
||||||
|
_accum_0[_len_0] = repr(x)
|
||||||
|
_len_0 = _len_0 + 1
|
||||||
|
end
|
||||||
|
return _accum_0
|
||||||
|
end)(), ", ")) .. ")"
|
||||||
|
end
|
||||||
local _list_0 = {
|
local _list_0 = {
|
||||||
"File",
|
"File",
|
||||||
"Nomsu",
|
"Nomsu",
|
||||||
@ -79,7 +102,8 @@ for _index_0 = 1, #_list_0 do
|
|||||||
"value"
|
"value"
|
||||||
}, {
|
}, {
|
||||||
type = t,
|
type = t,
|
||||||
name = t
|
name = t,
|
||||||
|
__tostring = type_tostring
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
Types.DictEntry = immutable({
|
Types.DictEntry = immutable({
|
||||||
@ -94,7 +118,9 @@ end
|
|||||||
local NOMSU_DEFS
|
local NOMSU_DEFS
|
||||||
do
|
do
|
||||||
local _with_0 = { }
|
local _with_0 = { }
|
||||||
_with_0.Tuple = Tuple
|
_with_0.Tuple = function(values)
|
||||||
|
return Tuple(table.unpack(values))
|
||||||
|
end
|
||||||
_with_0.DictEntry = function(k, v)
|
_with_0.DictEntry = function(k, v)
|
||||||
return Types.DictEntry(k, v)
|
return Types.DictEntry(k, v)
|
||||||
end
|
end
|
||||||
@ -185,13 +211,14 @@ setmetatable(NOMSU_DEFS, {
|
|||||||
if type(value) == 'table' then
|
if type(value) == 'table' then
|
||||||
error(value)
|
error(value)
|
||||||
end
|
end
|
||||||
local node = Types[key](node_id, value)
|
lpeg.userdata.tree_metadata[node_id] = {
|
||||||
lpeg.userdata.tree_metadata[node] = {
|
|
||||||
start = start,
|
start = start,
|
||||||
stop = stop,
|
stop = stop,
|
||||||
filename = lpeg.userdata.filename,
|
filename = lpeg.userdata.filename,
|
||||||
source_code = lpeg.userdata.source_code
|
source_code = lpeg.userdata.source_code
|
||||||
}
|
}
|
||||||
|
local node = Types[key](node_id, value)
|
||||||
|
lpeg.userdata.tree_metadata[node] = lpeg.userdata.tree_metadata[node_id]
|
||||||
return node
|
return node
|
||||||
end
|
end
|
||||||
self[key] = make_node
|
self[key] = make_node
|
||||||
@ -340,7 +367,7 @@ do
|
|||||||
get_line_number = cached(function(self, tree)
|
get_line_number = cached(function(self, tree)
|
||||||
local metadata = self.tree_metadata[tree]
|
local metadata = self.tree_metadata[tree]
|
||||||
if not (metadata) then
|
if not (metadata) then
|
||||||
error("Failed to find metatdata for tree: " .. tostring(tree), 0)
|
return "<dynamically generated>"
|
||||||
end
|
end
|
||||||
if not (self.file_metadata[metadata.filename]) then
|
if not (self.file_metadata[metadata.filename]) then
|
||||||
error("Failed to find file metatdata for file: " .. tostring(metadata.filename), 0)
|
error("Failed to find file metatdata for file: " .. tostring(metadata.filename), 0)
|
||||||
@ -962,7 +989,7 @@ do
|
|||||||
}
|
}
|
||||||
elseif "Nomsu" == _exp_0 then
|
elseif "Nomsu" == _exp_0 then
|
||||||
return {
|
return {
|
||||||
expr = "nomsu:parse(" .. tostring(repr(self:get_source_code(tree.value))) .. ", " .. tostring(repr(self:get_line_number(tree.value))) .. ").value[1]"
|
expr = repr(tree.value)
|
||||||
}
|
}
|
||||||
elseif "Block" == _exp_0 then
|
elseif "Block" == _exp_0 then
|
||||||
local lua_bits = { }
|
local lua_bits = { }
|
||||||
@ -1303,8 +1330,7 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
if is_changed then
|
if is_changed then
|
||||||
local new_tree = getmetatable(tree)(tree.id, Tuple(new_values))
|
local new_tree = getmetatable(tree)(tree.id, Tuple(table.unpack(new_values)))
|
||||||
self.tree_metadata[new_tree] = self.tree_metadata[tree]
|
|
||||||
return new_tree
|
return new_tree
|
||||||
end
|
end
|
||||||
elseif "Dict" == _exp_0 then
|
elseif "Dict" == _exp_0 then
|
||||||
@ -1320,8 +1346,7 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
if is_changed then
|
if is_changed then
|
||||||
local new_tree = getmetatable(tree)(tree.id, Tuple(new_values))
|
local new_tree = getmetatable(tree)(tree.id, Tuple(table.unpack(new_values)))
|
||||||
self.tree_metadata[new_tree] = self.tree_metadata[tree]
|
|
||||||
return new_tree
|
return new_tree
|
||||||
end
|
end
|
||||||
elseif nil == _exp_0 then
|
elseif nil == _exp_0 then
|
||||||
@ -1478,9 +1503,15 @@ do
|
|||||||
self:define_compile_action("!! code location !!", get_line_no(), function()
|
self:define_compile_action("!! code location !!", get_line_no(), function()
|
||||||
local tree = nomsu.compilestack[#nomsu.compilestack - 1]
|
local tree = nomsu.compilestack[#nomsu.compilestack - 1]
|
||||||
local metadata = self.tree_metadata[tree]
|
local metadata = self.tree_metadata[tree]
|
||||||
return {
|
if metadata then
|
||||||
expr = repr(tostring(metadata.filename) .. ":" .. tostring(metadata.start) .. "," .. tostring(metadata.stop))
|
return {
|
||||||
}
|
expr = repr(tostring(metadata.filename) .. ":" .. tostring(metadata.start) .. "," .. tostring(metadata.stop))
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return {
|
||||||
|
expr = repr("<dynamically generated>")
|
||||||
|
}
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
self:define_action("run file %filename", get_line_no(), function(_filename)
|
self:define_action("run file %filename", get_line_no(), function(_filename)
|
||||||
return nomsu:run_file(_filename)
|
return nomsu:run_file(_filename)
|
||||||
@ -1568,6 +1599,10 @@ do
|
|||||||
load = load,
|
load = load,
|
||||||
ipairs = ipairs
|
ipairs = ipairs
|
||||||
}
|
}
|
||||||
|
for k, v in pairs(Types) do
|
||||||
|
self.environment[k] = v
|
||||||
|
end
|
||||||
|
self.environment.Tuple = Tuple
|
||||||
self.environment.ACTIONS = setmetatable({ }, {
|
self.environment.ACTIONS = setmetatable({ }, {
|
||||||
__index = function(self, key)
|
__index = function(self, key)
|
||||||
return error("Attempt to run undefined action: " .. tostring(key), 0)
|
return error("Attempt to run undefined action: " .. tostring(key), 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user