mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
nimpretty: fixes #9500
This commit is contained in:
@@ -1144,6 +1144,7 @@ proc skip(L: var TLexer, tok: var TToken) =
|
||||
hasComment = true
|
||||
if tok.line < 0:
|
||||
tok.line = L.lineNumber
|
||||
commentIndent = indent
|
||||
skipMultiLineComment(L, tok, pos+2, false)
|
||||
pos = L.bufpos
|
||||
buf = L.buf
|
||||
|
||||
@@ -334,3 +334,26 @@ proc abcdef*[T:not (tuple|object|string|cstring|char|ref|ptr|array|seq|distinct)
|
||||
# bug #9504
|
||||
type T2 = a.type
|
||||
discard
|
||||
|
||||
proc fun() =
|
||||
#[
|
||||
this one here
|
||||
]#
|
||||
discard
|
||||
|
||||
proc fun2() =
|
||||
##[
|
||||
foobar
|
||||
]##
|
||||
discard
|
||||
|
||||
#[
|
||||
foobar
|
||||
]#
|
||||
|
||||
proc fun3() =
|
||||
discard
|
||||
|
||||
##[
|
||||
foobar
|
||||
]##
|
||||
|
||||
@@ -343,3 +343,26 @@ proc abcdef*[T: not (tuple|object|string|cstring|char|ref|ptr|array|seq|distinct
|
||||
# bug #9504
|
||||
type T2 = a.type
|
||||
discard
|
||||
|
||||
proc fun() =
|
||||
#[
|
||||
this one here
|
||||
]#
|
||||
discard
|
||||
|
||||
proc fun2() =
|
||||
##[
|
||||
foobar
|
||||
]##
|
||||
discard
|
||||
|
||||
#[
|
||||
foobar
|
||||
]#
|
||||
|
||||
proc fun3() =
|
||||
discard
|
||||
|
||||
##[
|
||||
foobar
|
||||
]##
|
||||
|
||||
Reference in New Issue
Block a user