Simplifying code.

This commit is contained in:
Bruce Hill 2018-06-13 13:23:24 -07:00
parent 45e0a831fe
commit 12d52f743c
2 changed files with 72 additions and 90 deletions

View File

@ -11,19 +11,40 @@ local AST = { }
AST.is_syntax_tree = function(n) AST.is_syntax_tree = function(n)
return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) return type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n)
end end
local Tree local types = {
Tree = function(name, methods) "Number",
local cls = methods or { } "Var",
"Block",
"EscapedNomsu",
"Text",
"List",
"Dict",
"DictEntry",
"IndexChain",
"Action"
}
for _index_0 = 1, #types do
local name = types[_index_0]
local cls = { }
do do
cls.type = name
cls.__class = cls cls.__class = cls
cls.__index = cls
cls.__name = name cls.__name = name
cls.type = name
cls.is_instance = function(self, x) cls.is_instance = function(self, x)
return getmetatable(x) == self return getmetatable(x) == self
end end
cls.__index = cls
cls.__tostring = function(self) cls.__tostring = function(self)
return tostring(self.name) .. "(#{table.concat([repr(v) for v in *@]), ', '})" 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 end
cls.map = function(self, fn) cls.map = function(self, fn)
do do
@ -32,26 +53,29 @@ Tree = function(name, methods)
return replacement return replacement
end end
end end
local made_changes, new_vals = false, { } local replacements
for i, v in ipairs(self) do do
if AST.is_syntax_tree(v) then local _accum_0 = { }
do local _len_0 = 1
local replacement = v:map(fn) for _index_1 = 1, #self do
if replacement then local v = self[_index_1]
if replacement ~= v then _accum_0[_len_0] = AST.is_syntax_tree(v) and v:map(fn) or nil
made_changes = true _len_0 = _len_0 + 1
v = replacement
end
end
end
end end
new_vals[i] = v replacements = _accum_0
end end
if not (made_changes) then if not (next(replacements)) then
return self return self
end end
local replacement = getmetatable(self)(self.source, unpack(new_vals)) return (self.__class)(self.source, unpack((function()
return replacement 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
end end
AST[name] = setmetatable(cls, { AST[name] = setmetatable(cls, {
@ -78,41 +102,18 @@ Tree = function(name, methods)
end end
}) })
end end
Tree("Number") AST.Action.__init = function(self)
Tree("Var") local stub_bits
Tree("Block") do
Tree("EscapedNomsu") local _accum_0 = { }
Tree("Text") local _len_0 = 1
Tree("List") for _index_0 = 1, #self do
Tree("Dict") local a = self[_index_0]
Tree("DictEntry") _accum_0[_len_0] = type(a) == 'string' and a or '%'
Tree("IndexChain") _len_0 = _len_0 + 1
Tree("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
stub_bits = _accum_0
end end
self.stub = concat(stub_bits, " ") stub_bits = _accum_0
end,
get_spec = function(self)
return concat((function()
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 "%" .. tostring(a[1])
_len_0 = _len_0 + 1
end
return _accum_0
end)(), " ")
end end
}) self.stub = concat(stub_bits, " ")
end
return AST return AST

View File

@ -8,29 +8,22 @@ AST = {}
AST.is_syntax_tree = (n)-> AST.is_syntax_tree = (n)->
type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n) type(n) == 'table' and getmetatable(n) and AST[n.type] == getmetatable(n)
-- Helper method: types = {"Number", "Var", "Block", "EscapedNomsu", "Text", "List", "Dict", "DictEntry",
Tree = (name, methods)-> "IndexChain", "Action"}
cls = methods or {} for name in *types
cls = {}
with cls with cls
.type = name
.__class = cls .__class = cls
.__name = name
.is_instance = (x)=> getmetatable(x) == @
.__index = cls .__index = cls
.__tostring = => "#{@name}(#{table.concat([repr(v) for v in *@]), ', '})" .__name = name
.type = name
.is_instance = (x)=> getmetatable(x) == @
.__tostring = => "#{@name}(#{concat([repr(v) for v in *@], ', ')})"
.map = (fn)=> .map = (fn)=>
if replacement = fn(@) then return replacement if replacement = fn(@) then return replacement
made_changes, new_vals = false, {} replacements = [AST.is_syntax_tree(v) and v\map(fn) or nil for v in *@]
for i,v in ipairs @ return @ unless next(replacements)
if AST.is_syntax_tree(v) return (@__class)(@source, unpack([replacements[i] or v for i,v in ipairs(@)]))
if replacement = v\map(fn)
if replacement ~= v
made_changes = true
v = replacement
new_vals[i] = v
return @ unless made_changes
replacement = getmetatable(self)(@source, unpack(new_vals))
return replacement
AST[name] = setmetatable cls, AST[name] = setmetatable cls,
__tostring: => @name __tostring: => @name
@ -44,20 +37,8 @@ Tree = (name, methods)->
if inst.__init then inst\__init! if inst.__init then inst\__init!
return inst return inst
Tree "Number" AST.Action.__init = =>
Tree "Var" stub_bits = [type(a) == 'string' and a or '%' for a in *@]
Tree "Block" @stub = concat stub_bits, " "
Tree "EscapedNomsu"
Tree "Text"
Tree "List"
Tree "Dict"
Tree "DictEntry"
Tree "IndexChain"
Tree "Action",
__init: =>
stub_bits = [type(a) == 'string' and a or '%' for a in *@]
@stub = concat stub_bits, " "
get_spec: =>
concat [type(a) == "string" and a or "%#{a[1]}" for a in *@], " "
return AST return AST