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