nimpretty: relax line length rules when dealing with (inline) comments (#11657)

This commit is contained in:
Miran
2019-07-05 09:32:56 +02:00
committed by Andreas Rumpf
parent 95f2f2396f
commit 96a19ea1b4
4 changed files with 36 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ from sequtils import delete
const
MaxLineLen = 80
MinLineLen = 10
MinLineLen = 15
type
SplitKind = enum
@@ -102,12 +102,14 @@ proc findNewline(em: Emitter; p, lineLen: var int) =
inc lineLen, em.tokens[p].len
inc p
proc optionalIsGood(em: var Emitter; pos: int): bool =
proc optionalIsGood(em: var Emitter; pos, currentLen: int): bool =
let ourIndent = em.tokens[pos].len
var p = pos+1
var lineLen = 0
em.findNewline(p, lineLen)
if p+1 < em.tokens.len and em.kinds[p+1] == ltSpaces and
if em.kinds[p-1] == ltComment and currentLen+lineLen < MaxLineLen+MinLineLen:
result = false
elif p+1 < em.tokens.len and em.kinds[p+1] == ltSpaces and
em.kinds[p-1] == ltOptionalNewline:
if em.tokens[p+1].len == ourIndent:
# concatenate lines with the same indententation
@@ -163,7 +165,7 @@ proc closeEmitter*(em: var Emitter) =
else:
# pick the shorter indentation token:
var spaces = maxLhs - lineLen
if spaces < em.tokens[i].len or computeRhs(em, i+1)+maxLhs <= MaxLineLen:
if spaces < em.tokens[i].len or computeRhs(em, i+1)+maxLhs <= MaxLineLen+MinLineLen:
if spaces <= 0 and content[^1] notin {' ', '\L'}: spaces = 1
for j in 1..spaces: content.add ' '
inc lineLen, spaces
@@ -177,7 +179,7 @@ proc closeEmitter*(em: var Emitter) =
of ltOptionalNewline:
let totalLineLen = lineLen + lenOfNextTokens(em, i)
if totalLineLen > MaxLineLen + MinLineLen or
totalLineLen > MaxLineLen and optionalIsGood(em, i):
totalLineLen > MaxLineLen and optionalIsGood(em, i, lineLen):
if i-1 >= 0 and em.kinds[i-1] == ltSpaces:
let spaces = em.tokens[i-1].len
content.setLen(content.len - spaces)

View File

@@ -688,3 +688,15 @@ proc newRecordGen(ctx: Context; typ: TypRef): PNode =
nkRecList.t(
typ.recFields.map(newRecFieldGen))))
let
lla = 42394219 - 42429849 + 1293293 - 13918391 + 424242 # this here is an okayish comment
llb = 42394219 - 42429849 + 1293293 - 13918391 + 424242 # this here is a very long comment which should be split
llc = 42394219 - 42429849 + 1293293 - 13918391 + 424242 - 3429424 + 4239489 - 42399
lld = 42394219 - 42429849 + 1293293 - 13918391 + 424242 - 342949924 + 423948999 - 42399
type
MyLongEnum = enum ## doc comment here
first, ## this is a long comment here, but please align it
secondWithAVeryLongNameMightBreak, ## this is a short one
thirdOne ## it's ok

View File

@@ -19,8 +19,7 @@ var body = newNimNode(nnkIfExpr).add(
ident("kind"))),
condition
),
newNimNode(nnkElse).add(newStmtList(newNimNode(nnkReturnStmt).add(ident(
"false"))))
newNimNode(nnkElse).add(newStmtList(newNimNode(nnkReturnStmt).add(ident("false"))))
)
# comment
@@ -122,7 +121,7 @@ type
inquote {.pragmaHereWrongCurlyEnd.}: bool
col, lastLineNumber, lineSpan, indentLevel: int
content: string
fixedUntil: int # marks where we must not go in the content
fixedUntil: int # marks where we must not go in the content
altSplitPos: array[SplitKind, int] # alternative split positions
proc openEmitter*[T, S](em: var Emitter; config: ConfigRef;
@@ -695,3 +694,17 @@ proc newRecordGen(ctx: Context; typ: TypRef): PNode =
nkRecList.t(
typ.recFields.map(newRecFieldGen))))
let
lla = 42394219 - 42429849 + 1293293 - 13918391 + 424242 # this here is an okayish comment
llb = 42394219 - 42429849 + 1293293 - 13918391 +
424242 # this here is a very long comment which should be split
llc = 42394219 - 42429849 + 1293293 - 13918391 + 424242 - 3429424 + 4239489 - 42399
lld = 42394219 - 42429849 + 1293293 - 13918391 + 424242 - 342949924 +
423948999 - 42399
type
MyLongEnum = enum ## doc comment here
first, ## this is a long comment here, but please align it
secondWithAVeryLongNameMightBreak, ## this is a short one
thirdOne ## it's ok

View File

@@ -9,8 +9,7 @@ proc fun() =
echo "ok1"
proc fun2(a = "fooo" & "bar" & "bar" & "bar" & "bar" & ("bar" & "bar" & "bar") &
"bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar" &
"bar"): auto =
"bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar" & "bar"): auto =
discard
fun2()