diff options
author | Zahary Karadjov <zahary@gmail.com> | 2014-01-04 12:28:25 +0200 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2014-01-04 13:10:52 +0200 |
commit | 789ba107cf3bcc1a87d896fc7cbfa11e151898c2 (patch) | |
tree | a912096f7e5133f3dd08528d1499d6cd1ecec305 /compiler/semgnrc.nim | |
parent | 02533c260b16ce7b16a47781d104b46b36544749 (diff) | |
download | Nim-789ba107cf3bcc1a87d896fc7cbfa11e151898c2.tar.gz |
introduce tyFromExpr; fixes #618
Diffstat (limited to 'compiler/semgnrc.nim')
-rw-r--r-- | compiler/semgnrc.nim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/compiler/semgnrc.nim b/compiler/semgnrc.nim index 9f477492c..b40e86cbf 100644 --- a/compiler/semgnrc.nim +++ b/compiler/semgnrc.nim @@ -17,11 +17,6 @@ # included from sem.nim -type - TSemGenericFlag = enum - withinBind, withinTypeDesc, withinMixin - TSemGenericFlags = set[TSemGenericFlag] - proc getIdentNode(n: PNode): PNode = case n.kind of nkPostfix: result = getIdentNode(n.sons[1]) @@ -31,8 +26,6 @@ proc getIdentNode(n: PNode): PNode = illFormedAst(n) result = n -proc semGenericStmt(c: PContext, n: PNode, flags: TSemGenericFlags, - ctx: var TIntSet): PNode proc semGenericStmtScope(c: PContext, n: PNode, flags: TSemGenericFlags, ctx: var TIntSet): PNode = |