nomsu/nomsu_tree.lua

132 lines
3.0 KiB
Lua
Raw Normal View History

local repr
repr = require('utils').repr
local insert, remove, concat
do
local _obj_0 = table
insert, remove, concat = _obj_0.insert, _obj_0.remove, _obj_0.concat
end
local Source
Source = require("code_obj").Source
local AST = { }
AST.is_syntax_tree = function(n)
return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n)
end
2018-06-13 13:23:24 -07:00
local types = {
"Number",
"Var",
"Block",
"EscapedNomsu",
"Text",
"List",
"Dict",
"DictEntry",
"IndexChain",
"Action"
}
for _index_0 = 1, #types do
local name = types[_index_0]
local cls = { }
do
cls.__class = cls
2018-06-13 13:23:24 -07:00
cls.__index = cls
cls.__name = name
2018-06-13 13:23:24 -07:00
cls.type = name
cls.is_instance = function(self, x)
return getmetatable(x) == self
2018-05-26 15:04:31 -07:00
end
cls.__tostring = function(self)
2018-06-13 13:23:24 -07:00
return tostring(self.name) .. "(" .. tostring(concat((function()
local _accum_0 = { }
local _len_0 = 1
for _index_1 = 1, #self do
local v = self[_index_1]
_accum_0[_len_0] = repr(v)
_len_0 = _len_0 + 1
end
return _accum_0
end)(), ', ')) .. ")"
end
cls.map = function(self, fn)
do
local replacement = fn(self)
if replacement then
return replacement
2018-05-16 18:12:56 -07:00
end
end
2018-06-13 13:23:24 -07:00
local replacements
do
local _accum_0 = { }
local _len_0 = 1
for _index_1 = 1, #self do
local v = self[_index_1]
_accum_0[_len_0] = AST.is_syntax_tree(v) and v:map(fn) or nil
_len_0 = _len_0 + 1
end
2018-06-13 13:23:24 -07:00
replacements = _accum_0
end
2018-06-13 13:23:24 -07:00
if not (next(replacements)) then
return self
end
2018-06-13 13:23:24 -07:00
return (self.__class)(self.source, unpack((function()
local _accum_0 = { }
local _len_0 = 1
for i, v in ipairs(self) do
_accum_0[_len_0] = replacements[i] or v
_len_0 = _len_0 + 1
end
return _accum_0
end)()))
end
end
AST[name] = setmetatable(cls, {
__tostring = function(self)
return self.name
end,
__call = function(self, source, ...)
if type(source) == 'string' then
source = Source:from_string(source)
end
2018-06-12 20:06:33 -07:00
for i = 1, select('#', ...) do
assert(select(i, ...))
end
assert(Source:is_instance(source))
local inst = {
source = source,
...
}
setmetatable(inst, self)
if inst.__init then
inst:__init()
end
return inst
2018-04-19 19:23:15 -07:00
end
})
end
2018-06-13 13:23:24 -07:00
AST.Action.__init = function(self)
local stub_bits
do
local _accum_0 = { }
local _len_0 = 1
for _index_0 = 1, #self do
local a = self[_index_0]
_accum_0[_len_0] = type(a) == 'string' and a or '%'
_len_0 = _len_0 + 1
end
2018-06-13 13:23:24 -07:00
stub_bits = _accum_0
end
2018-06-13 13:23:24 -07:00
self.stub = concat(stub_bits, " ")
end
AST.Action.get_args = function(self)
local _accum_0 = { }
local _len_0 = 1
for _index_0 = 1, #self do
local tok = self[_index_0]
if type(tok) ~= 'string' then
_accum_0[_len_0] = tok
_len_0 = _len_0 + 1
end
end
return _accum_0
end
return AST