diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-12-31 00:16:38 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-12-31 00:16:38 +0100 |
commit | 307a6095fa69104e3b21aa796095f4b5bda12041 (patch) | |
tree | 0e30216353d4a4b37343d33212a028377f4f673f /compiler/ccgexprs.nim | |
parent | 2162a71c9314ed8bba7a8b9926e2d9637f7c6825 (diff) | |
download | Nim-307a6095fa69104e3b21aa796095f4b5bda12041.tar.gz |
made closure iterators tests green, updated docs
Diffstat (limited to 'compiler/ccgexprs.nim')
-rw-r--r-- | compiler/ccgexprs.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/ccgexprs.nim b/compiler/ccgexprs.nim index 0df7e22d3..afe3ec3cf 100644 --- a/compiler/ccgexprs.nim +++ b/compiler/ccgexprs.nim @@ -2004,9 +2004,9 @@ proc expr(p: BProc, n: PNode, d: var TLoc) = putLocIntoDest(p, d, sym.loc) of skParam: if sym.loc.r == nil or sym.loc.t == nil: - #echo "FAILED FOR PRCO ", p.prc.name.s - #debug p.prc.typ.n - #echo renderTree(p.prc.ast, {renderIds}) + # echo "FAILED FOR PRCO ", p.prc.name.s + # debug p.prc.typ.n + # echo renderTree(p.prc.ast, {renderIds}) internalError(n.info, "expr: param not init " & sym.name.s & "_" & $sym.id) putLocIntoDest(p, d, sym.loc) else: internalError(n.info, "expr(" & $sym.kind & "); unknown symbol") |