diff options
Diffstat (limited to 'compiler/sem.nim')
-rwxr-xr-x | compiler/sem.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/sem.nim b/compiler/sem.nim index 1bc2cee09..1c1b4351d 100755 --- a/compiler/sem.nim +++ b/compiler/sem.nim @@ -31,8 +31,8 @@ proc semLambda(c: PContext, n: PNode): PNode proc semTypeNode(c: PContext, n: PNode, prev: PType): PType proc semStmt(c: PContext, n: PNode): PNode proc semParamList(c: PContext, n, genericParams: PNode, s: PSym) -proc addParams(c: PContext, n: PNode) -proc addResult(c: PContext, t: PType, info: TLineInfo) +proc addParams(c: PContext, n: PNode, kind: TSymKind) +proc addResult(c: PContext, t: PType, info: TLineInfo, owner: TSymKind) proc addResultNode(c: PContext, n: PNode) proc instGenericContainer(c: PContext, n: PNode, header: PType): PType |