diff options
Diffstat (limited to 'compiler/semstmts.nim')
-rwxr-xr-x | compiler/semstmts.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/semstmts.nim b/compiler/semstmts.nim index e5f10ece1..2de496b9a 100755 --- a/compiler/semstmts.nim +++ b/compiler/semstmts.nim @@ -641,8 +641,6 @@ proc semLambda(c: PContext, n: PNode): PNode = illFormedAst(n) # process parameters: if n.sons[paramsPos].kind != nkEmpty: semParamList(c, n.sons[ParamsPos], nil, s) - # XXX: obsoleted - happens in semParamList - # addParams(c, s.typ.n) ParamsTypeCheck(c, s.typ) else: s.typ = newTypeS(tyProc, c) @@ -690,7 +688,7 @@ proc semProcAux(c: PContext, n: PNode, kind: TSymKind, # we have a list of implicit type parameters: n.sons[genericParamsPos] = gp # check for semantics again: - semParamList(c, n.sons[ParamsPos], nil, s) + # semParamList(c, n.sons[ParamsPos], nil, s) else: s.typ = newTypeS(tyProc, c) addSon(s.typ, nil) |