2018-04-17 14:18:23 -07:00
|
|
|
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
|
2018-05-26 15:58:32 -07:00
|
|
|
local Lua, Nomsu, Source
|
2018-04-17 14:18:23 -07:00
|
|
|
do
|
2018-04-26 14:00:01 -07:00
|
|
|
local _obj_0 = require("code_obj")
|
2018-05-26 15:58:32 -07:00
|
|
|
Lua, Nomsu, Source = _obj_0.Lua, _obj_0.Nomsu, _obj_0.Source
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
2018-04-25 16:30:49 -07:00
|
|
|
local MAX_LINE = 80
|
2018-04-17 14:18:23 -07:00
|
|
|
local Types = { }
|
|
|
|
Types.is_node = function(n)
|
|
|
|
return type(n) == 'userdata' and getmetatable(n) and Types[n.type] == getmetatable(n)
|
|
|
|
end
|
|
|
|
local Tree
|
2018-06-04 17:56:09 -07:00
|
|
|
Tree = function(name, fields, methods)
|
2018-05-16 19:08:16 -07:00
|
|
|
methods = methods or { }
|
2018-06-04 17:56:09 -07:00
|
|
|
local is_multi = true
|
|
|
|
for _index_0 = 1, #fields do
|
|
|
|
local f = fields[_index_0]
|
|
|
|
is_multi = is_multi and (f ~= "value")
|
|
|
|
end
|
2018-04-17 14:18:23 -07:00
|
|
|
do
|
|
|
|
methods.type = name
|
|
|
|
methods.name = name
|
2018-06-04 17:56:09 -07:00
|
|
|
methods.__new = methods.__new or function(self, source, ...)
|
2018-05-26 15:04:31 -07:00
|
|
|
assert(source)
|
2018-05-26 15:58:32 -07:00
|
|
|
if type(source) == 'string' then
|
|
|
|
source = Source:from_string(source)
|
|
|
|
end
|
2018-06-04 17:56:09 -07:00
|
|
|
return source, ...
|
2018-05-26 15:04:31 -07:00
|
|
|
end
|
2018-05-16 18:12:56 -07:00
|
|
|
methods.is_multi = is_multi
|
|
|
|
if is_multi then
|
|
|
|
methods.__tostring = function(self)
|
|
|
|
return tostring(self.name) .. "(" .. tostring(table.concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
2018-06-04 17:56:09 -07:00
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local v = self[_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-06-12 13:56:15 -07:00
|
|
|
methods.map = function(self, fn)
|
2018-05-16 18:12:56 -07:00
|
|
|
do
|
2018-06-12 13:56:15 -07:00
|
|
|
local replacement = fn(self)
|
|
|
|
if replacement then
|
|
|
|
return replacement
|
2018-05-16 18:12:56 -07:00
|
|
|
end
|
2018-05-16 15:44:07 -07:00
|
|
|
end
|
2018-05-16 18:12:56 -07:00
|
|
|
local new_vals
|
|
|
|
do
|
2018-05-16 15:44:07 -07:00
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
2018-06-04 17:56:09 -07:00
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local v = self[_index_0]
|
2018-06-12 13:56:15 -07:00
|
|
|
_accum_0[_len_0] = v.map and v:map(fn) or v
|
2018-05-16 15:44:07 -07:00
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
2018-05-16 18:12:56 -07:00
|
|
|
new_vals = _accum_0
|
|
|
|
end
|
2018-06-12 13:56:15 -07:00
|
|
|
return getmetatable(self)(self.source, unpack(new_vals))
|
2018-05-16 18:12:56 -07:00
|
|
|
end
|
|
|
|
else
|
|
|
|
methods.__tostring = function(self)
|
|
|
|
return tostring(self.name) .. "(" .. tostring(repr(self.value)) .. ")"
|
|
|
|
end
|
2018-06-12 13:56:15 -07:00
|
|
|
methods.map = function(self, fn)
|
2018-05-16 18:12:56 -07:00
|
|
|
return fn(self) or self
|
2018-05-16 15:44:07 -07:00
|
|
|
end
|
|
|
|
end
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
2018-06-04 17:56:09 -07:00
|
|
|
Types[name] = immutable(fields, methods)
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
2018-06-04 17:56:09 -07:00
|
|
|
Tree("Block", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("EscapedNomsu", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("Text", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("List", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("Dict", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("DictEntry", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("IndexChain", {
|
|
|
|
"source"
|
|
|
|
})
|
|
|
|
Tree("Number", {
|
|
|
|
"source",
|
|
|
|
"value"
|
|
|
|
})
|
|
|
|
Tree("Var", {
|
|
|
|
"source",
|
|
|
|
"value"
|
|
|
|
})
|
|
|
|
Tree("Action", {
|
|
|
|
"source",
|
|
|
|
"stub"
|
|
|
|
}, {
|
|
|
|
__new = function(self, source, ...)
|
2018-05-30 17:20:22 -07:00
|
|
|
assert(source)
|
|
|
|
if type(source) == 'string' then
|
|
|
|
source = Source:from_string(source)
|
2018-04-19 19:23:15 -07:00
|
|
|
end
|
2018-06-04 17:56:09 -07:00
|
|
|
local stub_bits = { }
|
|
|
|
for i = 1, select("#", ...) do
|
|
|
|
local a = select(i, ...)
|
|
|
|
stub_bits[i] = type(a) == 'string' and a or "%"
|
|
|
|
end
|
|
|
|
local stub = concat(stub_bits, " ")
|
|
|
|
return source, stub, ...
|
2018-05-30 17:20:22 -07:00
|
|
|
end,
|
|
|
|
get_spec = function(self)
|
|
|
|
return concat((function()
|
|
|
|
local _accum_0 = { }
|
|
|
|
local _len_0 = 1
|
2018-06-04 17:56:09 -07:00
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local a = self[_index_0]
|
2018-05-30 17:20:22 -07:00
|
|
|
_accum_0[_len_0] = type(a) == "string" and a or "%" .. tostring(a.value)
|
|
|
|
_len_0 = _len_0 + 1
|
|
|
|
end
|
|
|
|
return _accum_0
|
|
|
|
end)(), " ")
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
|
|
|
})
|
|
|
|
return Types
|