docgen: make tests green again [backport]

(cherry picked from commit 8f28be0dd8)
This commit is contained in:
Araq
2018-10-30 23:30:02 +01:00
committed by narimiran
parent be6f0108f3
commit 20c6ec0a22

View File

@@ -231,7 +231,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])