closures shouldn't leak anymore

This commit is contained in:
Araq
2012-07-16 08:43:54 +02:00
parent 4215686cce
commit 56b4e3ad91
3 changed files with 4 additions and 4 deletions

View File

@@ -80,8 +80,10 @@ proc genTraverseProc(c: var TTraversalClosure, accessor: PRope, typ: PType) =
genTraverseProc(c, ropef("$1.Field$2", accessor, i.toRope), typ.sons[i])
of tyRef, tyString, tySequence:
lineCg(p, cpsStmts, c.visitorFrmt, accessor)
else:
# no marker procs for closures yet
of tyProc:
if typ.callConv == ccClosure:
lineCg(p, cpsStmts, c.visitorFrmt, ropef("$1.ClEnv", accessor))
else:
nil
proc genTraverseProcSeq(c: var TTraversalClosure, accessor: PRope, typ: PType) =

View File

@@ -1,7 +1,6 @@
discard """
file: "tclosure3.nim"
output: "success"
disabled: true
"""
proc main =

View File

@@ -3,7 +3,6 @@ version 0.9.0
- implicit deref for parameter matching
- deprecate ``var x, y = 0`` as it's confusing for tuple consistency
- test sequence of closures; especially that the GC does not leak for those!
New pragmas:
- ``hoist`` pragma for loop hoisting