2018-06-12 15:12:27 -07:00
|
|
|
local repr
|
|
|
|
repr = require('utils').repr
|
2018-04-17 14:18:23 -07:00
|
|
|
local insert, remove, concat
|
|
|
|
do
|
|
|
|
local _obj_0 = table
|
|
|
|
insert, remove, concat = _obj_0.insert, _obj_0.remove, _obj_0.concat
|
|
|
|
end
|
2018-06-12 15:12:27 -07:00
|
|
|
local Source
|
|
|
|
Source = require("code_obj").Source
|
2018-06-18 15:44:29 -07:00
|
|
|
local unpack = unpack or table.unpack
|
2018-06-12 15:12:27 -07:00
|
|
|
local AST = { }
|
2018-06-18 18:10:59 -07:00
|
|
|
AST.is_syntax_tree = function(n, t)
|
|
|
|
if t == nil then
|
|
|
|
t = nil
|
|
|
|
end
|
|
|
|
return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) and (t == nil or n.type == t)
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
2018-06-13 13:23:24 -07:00
|
|
|
local types = {
|
|
|
|
"Number",
|
|
|
|
"Var",
|
|
|
|
"Block",
|
|
|
|
"EscapedNomsu",
|
|
|
|
"Text",
|
|
|
|
"List",
|
|
|
|
"Dict",
|
|
|
|
"DictEntry",
|
|
|
|
"IndexChain",
|
2018-06-18 15:44:29 -07:00
|
|
|
"Action",
|
2018-08-28 15:08:00 -07:00
|
|
|
"FileChunks",
|
|
|
|
"Method"
|
2018-06-13 13:23:24 -07:00
|
|
|
}
|
|
|
|
for _index_0 = 1, #types do
|
|
|
|
local name = types[_index_0]
|
|
|
|
local cls = { }
|
2018-04-17 14:18:23 -07:00
|
|
|
do
|
2018-06-12 18:04:18 -07:00
|
|
|
cls.__class = cls
|
2018-06-13 13:23:24 -07:00
|
|
|
cls.__index = cls
|
2018-06-12 18:04:18 -07:00
|
|
|
cls.__name = name
|
2018-06-13 13:23:24 -07:00
|
|
|
cls.type = name
|
2018-06-12 15:12:27 -07:00
|
|
|
cls.is_instance = function(self, x)
|
|
|
|
return getmetatable(x) == self
|
2018-05-26 15:04:31 -07:00
|
|
|
end
|
2018-06-12 15:12:27 -07:00
|
|
|
cls.__tostring = function(self)
|
2018-08-28 15:08:00 -07:00
|
|
|
return tostring(self.type) .. tostring(repr(self, (function(x)
|
|
|
|
return Source:is_instance(x) and tostring(x) or nil
|
|
|
|
end)))
|
|
|
|
end
|
|
|
|
cls.__repr = function(self)
|
|
|
|
return tostring(self.type) .. tostring(repr(self, (function(x)
|
|
|
|
return Source:is_instance(x) and tostring(x) or nil
|
|
|
|
end)))
|
2018-06-12 15:12:27 -07:00
|
|
|
end
|
|
|
|
cls.map = function(self, fn)
|
2018-07-15 19:41:22 -07:00
|
|
|
local replacement = fn(self)
|
2018-07-17 14:12:11 -07:00
|
|
|
if replacement == false then
|
|
|
|
return nil
|
2018-05-16 18:12:56 -07:00
|
|
|
end
|
2018-07-17 14:12:11 -07:00
|
|
|
if replacement then
|
2018-08-28 15:08:00 -07:00
|
|
|
if AST.is_syntax_tree(replacement) then
|
|
|
|
replacement = setmetatable((function()
|
|
|
|
local _tbl_0 = { }
|
|
|
|
for k, v in pairs(replacement) do
|
|
|
|
_tbl_0[k] = v
|
|
|
|
end
|
|
|
|
return _tbl_0
|
|
|
|
end)(), getmetatable(replacement))
|
|
|
|
replacement.source = self.source
|
|
|
|
if self.comments then
|
|
|
|
replacement.comments = {
|
|
|
|
unpack(self.comments)
|
|
|
|
}
|
|
|
|
end
|
2018-08-30 14:06:41 -07:00
|
|
|
do
|
|
|
|
local init = replacement.__init
|
|
|
|
if init then
|
|
|
|
init(replacement)
|
|
|
|
end
|
|
|
|
end
|
2018-08-28 15:08:00 -07:00
|
|
|
end
|
2018-07-17 14:12:11 -07:00
|
|
|
else
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement = {
|
|
|
|
source = self.source,
|
|
|
|
comments = self.comments and {
|
|
|
|
unpack(self.comments)
|
|
|
|
}
|
|
|
|
}
|
2018-07-17 14:12:11 -07:00
|
|
|
local changes = false
|
2018-08-28 15:08:00 -07:00
|
|
|
for k, v in pairs(self) do
|
2018-07-17 14:12:11 -07:00
|
|
|
local _continue_0 = false
|
|
|
|
repeat
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement[k] = v
|
2018-07-17 14:12:11 -07:00
|
|
|
if AST.is_syntax_tree(v) then
|
|
|
|
local r = v:map(fn)
|
|
|
|
if r == v or r == nil then
|
|
|
|
_continue_0 = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
changes = true
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement[k] = r
|
2018-07-17 14:12:11 -07:00
|
|
|
end
|
|
|
|
_continue_0 = true
|
|
|
|
until true
|
|
|
|
if not _continue_0 then
|
|
|
|
break
|
|
|
|
end
|
2018-06-12 15:12:27 -07:00
|
|
|
end
|
2018-07-17 14:12:11 -07:00
|
|
|
if not (changes) then
|
|
|
|
return self
|
|
|
|
end
|
2018-08-28 15:08:00 -07:00
|
|
|
replacement = setmetatable(replacement, getmetatable(self))
|
2018-08-30 14:06:41 -07:00
|
|
|
do
|
|
|
|
local init = replacement.__init
|
|
|
|
if init then
|
|
|
|
init(replacement)
|
|
|
|
end
|
|
|
|
end
|
2018-06-12 18:04:18 -07:00
|
|
|
end
|
2018-07-17 14:12:11 -07:00
|
|
|
return replacement
|
2018-05-16 15:44:07 -07:00
|
|
|
end
|
2018-07-22 13:48:44 -07:00
|
|
|
cls.__eq = function(self, other)
|
|
|
|
if type(self) ~= type(other) or #self ~= #other or getmetatable(self) ~= getmetatable(other) then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
for i = 1, #self do
|
|
|
|
if self[i] ~= other[i] then
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
2018-08-28 15:08:00 -07:00
|
|
|
if self.target ~= other.target then
|
|
|
|
return false
|
|
|
|
end
|
2018-07-22 13:48:44 -07:00
|
|
|
return true
|
|
|
|
end
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
2018-06-12 15:12:27 -07:00
|
|
|
AST[name] = setmetatable(cls, {
|
|
|
|
__tostring = function(self)
|
2018-08-27 13:38:58 -07:00
|
|
|
return self.__name
|
2018-06-12 15:12:27 -07:00
|
|
|
end,
|
2018-08-28 15:08:00 -07:00
|
|
|
__call = function(self, t)
|
|
|
|
if type(t.source) == 'string' then
|
|
|
|
t.source = Source:from_string(t.source)
|
|
|
|
else
|
|
|
|
assert(Source:is_instance(t.source))
|
2018-06-12 20:06:33 -07:00
|
|
|
end
|
2018-08-28 15:08:00 -07:00
|
|
|
setmetatable(t, self)
|
2018-08-30 14:06:41 -07:00
|
|
|
do
|
|
|
|
local init = t.__init
|
|
|
|
if init then
|
|
|
|
init(t)
|
|
|
|
end
|
2018-06-12 15:12:27 -07:00
|
|
|
end
|
2018-08-28 15:08:00 -07:00
|
|
|
return t
|
2018-04-19 19:23:15 -07:00
|
|
|
end
|
2018-06-12 15:12:27 -07:00
|
|
|
})
|
|
|
|
end
|
2018-06-13 13:23:24 -07:00
|
|
|
AST.Action.__init = function(self)
|
2018-08-28 15:08:00 -07:00
|
|
|
local stub_bits = { }
|
|
|
|
local arg_i = 1
|
|
|
|
for _index_0 = 1, #self do
|
|
|
|
local a = self[_index_0]
|
|
|
|
if type(a) == 'string' then
|
|
|
|
stub_bits[#stub_bits + 1] = a
|
|
|
|
else
|
|
|
|
stub_bits[#stub_bits + 1] = tostring(arg_i)
|
|
|
|
arg_i = arg_i + 1
|
2018-06-04 17:56:09 -07:00
|
|
|
end
|
2018-04-17 14:18:23 -07:00
|
|
|
end
|
2018-06-13 13:23:24 -07:00
|
|
|
self.stub = concat(stub_bits, " ")
|
|
|
|
end
|
2018-06-14 21:59:25 -07:00
|
|
|
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
|
2018-06-12 15:12:27 -07:00
|
|
|
return AST
|