mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
fixes #1799
This commit is contained in:
@@ -158,7 +158,7 @@ proc genRecComment(d: PDoc, n: PNode): Rope =
|
||||
if n == nil: return nil
|
||||
result = genComment(d, n).rope
|
||||
if result == nil:
|
||||
if n.kind notin {nkEmpty..nkNilLit}:
|
||||
if n.kind notin {nkEmpty..nkNilLit, nkEnumTy}:
|
||||
for i in countup(0, len(n)-1):
|
||||
result = genRecComment(d, n.sons[i])
|
||||
if result != nil: return
|
||||
|
||||
@@ -123,7 +123,7 @@ proc rawSkipComment(p: var TParser, node: PNode) =
|
||||
getTok(p)
|
||||
|
||||
proc skipComment(p: var TParser, node: PNode) =
|
||||
if p.tok.indent < 0: rawSkipComment(p, node)
|
||||
if p.tok.indent < 0 or realInd(p): rawSkipComment(p, node)
|
||||
|
||||
proc skipInd(p: var TParser) =
|
||||
if p.tok.indent >= 0:
|
||||
@@ -887,7 +887,7 @@ proc parseTuple(p: var TParser, indentAllowed = false): PNode =
|
||||
skipComment(p, result)
|
||||
if realInd(p):
|
||||
withInd(p):
|
||||
skipComment(p, result)
|
||||
rawSkipComment(p, result)
|
||||
while true:
|
||||
case p.tok.tokType
|
||||
of tkSymbol, tkAccent:
|
||||
@@ -1608,6 +1608,7 @@ proc parseEnum(p: var TParser): PNode =
|
||||
getTok(p)
|
||||
addSon(result, ast.emptyNode)
|
||||
optInd(p, result)
|
||||
rawSkipComment(p, result)
|
||||
while true:
|
||||
var a = parseSymbol(p)
|
||||
if a.kind == nkEmpty: return
|
||||
|
||||
Reference in New Issue
Block a user