Fix reverse indexed iterations
This commit is contained in:
parent
ccb2134c2f
commit
e193427e4c
@ -13,11 +13,11 @@ function Children:with(elementType)
|
||||
function elementType:_iterateChildrenReversed()
|
||||
local children = self:_children()
|
||||
return function(tbl, idx)
|
||||
if idx < 1 then
|
||||
if idx <= 1 then
|
||||
return nil, nil
|
||||
end
|
||||
return idx - 1, tbl[idx]
|
||||
end, children, #children
|
||||
return idx - 1, tbl[idx - 1]
|
||||
end, children, #children + 1
|
||||
end
|
||||
|
||||
function elementType:_children()
|
||||
|
Loading…
x
Reference in New Issue
Block a user