Slightly more robust.

This commit is contained in:
Bruce Hill 2018-09-28 18:35:12 -07:00
parent 84931a6f0e
commit 258527750c
2 changed files with 2 additions and 2 deletions

View File

@ -355,7 +355,7 @@ do
local _list_1 = self.bits local _list_1 = self.bits
for _index_0 = 1, #_list_1 do for _index_0 = 1, #_list_1 do
local bit = _list_1[_index_0] local bit = _list_1[_index_0]
if bit.__class == LuaCode then if not (type(bit) == 'string') then
gather_from(bit) gather_from(bit)
end end
end end

View File

@ -207,7 +207,7 @@ class LuaCode extends Code
seen[var] = true seen[var] = true
to_declare[#to_declare+1] = var to_declare[#to_declare+1] = var
for bit in *@bits for bit in *@bits
if bit.__class == LuaCode unless type(bit) == 'string'
gather_from bit gather_from bit
gather_from self gather_from self
if #to_declare > 0 if #to_declare > 0