diff options
author | Zahary Karadjov <zahary@gmail.com> | 2018-05-26 20:46:22 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2018-05-26 20:46:22 +0300 |
commit | 1c478db37546c0ec94537dca6a6aa81e3c623390 (patch) | |
tree | 027b202abd810d0dbe8a76f5d31b5dabdfab69a0 /compiler/sem.nim | |
parent | 09283bb9399f3eba62d2ce682d25b7b34a4ec135 (diff) | |
download | Nim-1c478db37546c0ec94537dca6a6aa81e3c623390.tar.gz |
fix #7883; fix #7829
Diffstat (limited to 'compiler/sem.nim')
-rw-r--r-- | compiler/sem.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/sem.nim b/compiler/sem.nim index c5c3dd99b..7bccf1556 100644 --- a/compiler/sem.nim +++ b/compiler/sem.nim @@ -38,6 +38,7 @@ proc changeType(c: PContext; n: PNode, newType: PType, check: bool) proc semLambda(c: PContext, n: PNode, flags: TExprFlags): PNode proc semTypeNode(c: PContext, n: PNode, prev: PType): PType proc semStmt(c: PContext, n: PNode): PNode +proc semOpAux(c: PContext, n: PNode) proc semParamList(c: PContext, n, genericParams: PNode, s: PSym) proc addParams(c: PContext, n: PNode, kind: TSymKind) proc maybeAddResult(c: PContext, s: PSym, n: PNode) |