Files
Nim/tests/arc/tcursorloop.nim
flywind bcff13debc dec inLoop after exiting the while scope in computeLiveRanges [backport] (#19918)
* dec inLoop after exiting the while scope in computeLiveRanges

* add testcase
2022-06-29 22:37:24 +08:00

46 lines
715 B
Nim

discard """
cmd: '''nim c --gc:arc --expandArc:traverse --hint:Performance:off $file'''
nimout: '''
--expandArc: traverse
var
it
jt_cursor
try:
`=copy`(it, root)
block :tmp:
while (
not (it == nil)):
if true:
echo [it.s]
`=copy`(it, it.ri)
jt_cursor = root
if (
not (jt_cursor == nil)):
echo [jt_cursor.s]
jt_cursor = jt_cursor.ri
finally:
`=destroy`(it)
-- end of expandArc ------------------------
'''
"""
type
Node = ref object
le, ri: Node
s: string
proc traverse(root: Node) =
var it = root
while it != nil:
if true:
echo it.s
it = it.ri
var jt = root
if jt != nil:
echo jt.s
jt = jt.ri
traverse(nil)