Slightly more robust.
This commit is contained in:
parent
84931a6f0e
commit
258527750c
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user