Cleaned up unnecessary buffer use.
This commit is contained in:
parent
214b3f9186
commit
95f3f55ff2
@ -1148,17 +1148,17 @@ do
|
|||||||
return nil
|
return nil
|
||||||
end,
|
end,
|
||||||
print_tree = function(self, tree)
|
print_tree = function(self, tree)
|
||||||
local buff = colors.bright .. colors.green
|
io.write(colors.bright .. colors.green)
|
||||||
for node, depth in coroutine.wrap(function()
|
for node, depth in coroutine.wrap(function()
|
||||||
return self:walk_tree(tree)
|
return self:walk_tree(tree)
|
||||||
end) do
|
end) do
|
||||||
if type(node) ~= 'table' or not node.type then
|
if type(node) ~= 'table' or not node.type then
|
||||||
buff = buff + (((" "):rep(depth) .. repr(node)) .. "\n")
|
print((" "):rep(depth) .. repr(node))
|
||||||
else
|
else
|
||||||
buff = buff + ((tostring((" "):rep(depth)) .. tostring(node.type) .. ":") .. "\n")
|
print(tostring((" "):rep(depth)) .. tostring(node.type) .. ":")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return print(buff .. colors.reset)
|
return io.write(colors.reset)
|
||||||
end,
|
end,
|
||||||
tree_to_str = function(self, tree)
|
tree_to_str = function(self, tree)
|
||||||
local bits = { }
|
local bits = { }
|
||||||
|
@ -773,13 +773,13 @@ class NomsuCompiler
|
|||||||
return nil
|
return nil
|
||||||
|
|
||||||
print_tree: (tree)=>
|
print_tree: (tree)=>
|
||||||
buff = colors.bright..colors.green
|
io.write(colors.bright..colors.green)
|
||||||
for node,depth in coroutine.wrap(-> @walk_tree tree)
|
for node,depth in coroutine.wrap(-> @walk_tree tree)
|
||||||
if type(node) != 'table' or not node.type
|
if type(node) != 'table' or not node.type
|
||||||
buff += ((" ")\rep(depth)..repr(node)).."\n"
|
print((" ")\rep(depth)..repr(node))
|
||||||
else
|
else
|
||||||
buff += ("#{(" ")\rep(depth)}#{node.type}:").."\n"
|
print("#{(" ")\rep(depth)}#{node.type}:")
|
||||||
print(buff..colors.reset)
|
io.write(colors.reset)
|
||||||
|
|
||||||
tree_to_str: (tree)=>
|
tree_to_str: (tree)=>
|
||||||
bits = {}
|
bits = {}
|
||||||
|
Loading…
Reference in New Issue
Block a user