docgen: make tests green again [backport]

This commit is contained in:
Araq
2018-10-30 23:30:02 +01:00
parent c9e8b899ed
commit 8f28be0dd8

View File

@@ -252,7 +252,7 @@ proc genRecCommentAux(d: PDoc, n: PNode): Rope =
result = genComment(d, n).rope
if result == nil:
if n.kind in {nkStmtList, nkStmtListExpr, nkTypeDef, nkConstDef,
nkObjectTy, nkRefTy, nkPtrTy}:
nkObjectTy, nkRefTy, nkPtrTy, nkAsgn, nkFastAsgn}:
# notin {nkEmpty..nkNilLit, nkEnumTy, nkTupleTy}:
for i in countup(0, len(n)-1):
result = genRecCommentAux(d, n.sons[i])