nomsu/nomsu_tree.lua

144 lines
4.0 KiB
Lua
Raw Normal View History

local utils = require('utils')
local repr, stringify, min, max, equivalent, set, is_list, sum
repr, stringify, min, max, equivalent, set, is_list, sum = utils.repr, utils.stringify, utils.min, utils.max, utils.equivalent, utils.set, utils.is_list, utils.sum
local immutable = require('immutable')
local insert, remove, concat
do
local _obj_0 = table
insert, remove, concat = _obj_0.insert, _obj_0.remove, _obj_0.concat
end
local Lua, Nomsu, Source
do
2018-04-26 14:00:01 -07:00
local _obj_0 = require("code_obj")
Lua, Nomsu, Source = _obj_0.Lua, _obj_0.Nomsu, _obj_0.Source
end
local MAX_LINE = 80
local Types = { }
Types.is_node = function(n)
return type(n) == 'userdata' and getmetatable(n) and Types[n.type] == getmetatable(n)
end
local Tree
2018-05-16 18:12:56 -07:00
Tree = function(name, kind, methods)
methods = methods or { }
2018-05-16 18:12:56 -07:00
assert((kind == 'single') or (kind == 'multi'))
local is_multi = (kind == 'multi')
do
methods.type = name
methods.name = name
2018-05-26 15:04:31 -07:00
methods.__new = function(self, value, source)
assert(source)
if type(source) == 'string' then
source = Source:from_string(source)
end
2018-05-26 15:04:31 -07:00
return value, source
end
2018-05-16 18:12:56 -07:00
methods.is_multi = is_multi
methods.map = function(self, fn)
if type(fn) == 'table' then
if not (next(fn)) then
return self
end
local _replacements = fn
fn = function(k)
return _replacements[k]
end
end
return self:_map(fn)
end
2018-05-16 18:12:56 -07:00
if is_multi then
methods.__tostring = function(self)
return tostring(self.name) .. "(" .. tostring(table.concat((function()
local _accum_0 = { }
local _len_0 = 1
2018-05-26 15:04:31 -07:00
local _list_0 = self.value
for _index_0 = 1, #_list_0 do
local v = _list_0[_index_0]
2018-05-16 18:12:56 -07:00
_accum_0[_len_0] = repr(v)
_len_0 = _len_0 + 1
end
return _accum_0
end)(), ', ')) .. ")"
2018-04-19 19:23:15 -07:00
end
2018-05-24 20:27:08 -07:00
methods._map = function(self, fn)
2018-05-16 18:12:56 -07:00
do
local ret = fn(self)
if ret then
return ret
end
end
2018-05-16 18:12:56 -07:00
local new_vals
do
local _accum_0 = { }
local _len_0 = 1
2018-05-26 15:04:31 -07:00
local _list_0 = self.value
for _index_0 = 1, #_list_0 do
local v = _list_0[_index_0]
2018-05-24 20:27:08 -07:00
_accum_0[_len_0] = v._map and v:_map(fn) or v
_len_0 = _len_0 + 1
end
2018-05-16 18:12:56 -07:00
new_vals = _accum_0
end
2018-05-26 15:04:31 -07:00
local ret = getmetatable(self)(Tuple(unpack(new_vals)), self.source)
2018-05-16 18:12:56 -07:00
return ret
end
2018-05-26 15:04:31 -07:00
methods.__ipairs = function(self)
return error()
end
2018-05-16 18:12:56 -07:00
else
methods.__tostring = function(self)
return tostring(self.name) .. "(" .. tostring(repr(self.value)) .. ")"
end
2018-05-24 20:27:08 -07:00
methods._map = function(self, fn)
2018-05-16 18:12:56 -07:00
return fn(self) or self
end
end
end
2018-05-26 15:04:31 -07:00
Types[name] = immutable({
"value",
"source"
}, methods)
end
Tree("Block", 'multi')
2018-05-24 20:27:08 -07:00
Tree("EscapedNomsu", 'multi')
Tree("Text", 'multi')
Tree("List", 'multi')
Tree("Dict", 'multi')
Tree("DictEntry", 'multi')
Tree("IndexChain", 'multi')
Tree("Number", 'single')
Tree("Comment", 'single')
2018-05-30 13:46:40 -07:00
Tree("Var", 'single')
2018-05-16 18:12:56 -07:00
Tree("Action", 'multi', {
2018-04-19 19:23:15 -07:00
get_stub = function(self, include_names)
if include_names == nil then
include_names = false
end
if include_names then
return concat((function()
2018-04-19 19:23:15 -07:00
local _accum_0 = { }
local _len_0 = 1
2018-05-26 15:04:31 -07:00
local _list_0 = self.value
for _index_0 = 1, #_list_0 do
local a = _list_0[_index_0]
_accum_0[_len_0] = type(a) == "string" and a or "%" .. tostring(a.value)
2018-04-19 19:23:15 -07:00
_len_0 = _len_0 + 1
end
return _accum_0
end)(), " ")
2018-04-19 19:23:15 -07:00
else
return concat((function()
2018-04-19 19:23:15 -07:00
local _accum_0 = { }
local _len_0 = 1
2018-05-26 15:04:31 -07:00
local _list_0 = self.value
for _index_0 = 1, #_list_0 do
local a = _list_0[_index_0]
_accum_0[_len_0] = type(a) == "string" and a or "%"
2018-04-19 19:23:15 -07:00
_len_0 = _len_0 + 1
end
return _accum_0
end)(), " ")
2018-04-19 19:23:15 -07:00
end
end
})
return Types