nimpretty: minor bug fix

(cherry picked from commit 695074214b)
This commit is contained in:
Araq
2018-10-23 17:38:31 +02:00
committed by narimiran
parent 80a9ac1400
commit 1b2c8317e0
3 changed files with 8 additions and 5 deletions

View File

@@ -224,7 +224,7 @@ proc openLexer*(lex: var TLexer, fileIdx: FileIndex, inputstream: PLLStream;
cache: IdentCache; config: ConfigRef) =
openBaseLexer(lex, inputstream)
lex.fileIdx = fileidx
lex.indentAhead = - 1
lex.indentAhead = -1
lex.currLineIndent = 0
inc(lex.lineNumber, inputstream.lineOffset)
lex.cache = cache
@@ -1072,6 +1072,7 @@ proc skip(L: var TLexer, tok: var TToken) =
var hasComment = false
tok.commentOffsetA = L.offsetBase + pos
tok.commentOffsetB = tok.commentOffsetA
tok.line = -1
while true:
case buf[pos]
of ' ':
@@ -1082,9 +1083,6 @@ proc skip(L: var TLexer, tok: var TToken) =
inc(pos)
of CR, LF:
tokenEndPrevious(tok, pos)
when defined(nimpretty):
# we are not yet in a comment, so update the comment token's line information:
if not hasComment: inc tok.line
pos = handleCRLF(L, pos)
buf = L.buf
var indent = 0
@@ -1107,7 +1105,10 @@ proc skip(L: var TLexer, tok: var TToken) =
of '#':
# do not skip documentation comment:
if buf[pos+1] == '#': break
when defined(nimpretty): hasComment = true
when defined(nimpretty):
hasComment = true
if tok.line < 0: tok.line = L.lineNumber
if buf[pos+1] == '[':
skipMultiLineComment(L, tok, pos+2, false)
pos = L.bufpos

View File

@@ -1,3 +1,4 @@
# comment here
var x: int = 2
echo x

View File

@@ -1,3 +1,4 @@
# comment here
var x: int = 2
echo x