mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* fixes #10200 * add rule for other comparison operators * add rule for '!=' * add test * fixed to pass the test
This commit is contained in:
@@ -247,7 +247,8 @@ proc emitTok*(em: var Emitter; L: TLexer; tok: TToken) =
|
||||
wr(TokTypeToStr[tok.tokType])
|
||||
if not em.inquote: wr(" ")
|
||||
of tkOpr, tkDotDot:
|
||||
if (tok.strongSpaceA == 0 and tok.strongSpaceB == 0) or em.inquote:
|
||||
if ((tok.strongSpaceA == 0 and tok.strongSpaceB == 0) or em.inquote) and
|
||||
tok.ident.s notin ["<", ">", "<=", ">=", "==", "!="]:
|
||||
# bug #9504: remember to not spacify a keyword:
|
||||
lastTokWasTerse = true
|
||||
# if not surrounded by whitespace, don't produce any whitespace either:
|
||||
|
||||
@@ -360,3 +360,9 @@ foobar
|
||||
|
||||
# bug #9673
|
||||
discard `* `(1, 2)
|
||||
|
||||
proc fun4() =
|
||||
var a = "asdf"
|
||||
var i = 0
|
||||
while i<a.len and i<a.len:
|
||||
return
|
||||
|
||||
@@ -369,3 +369,9 @@ foobar
|
||||
|
||||
# bug #9673
|
||||
discard `*`(1, 2)
|
||||
|
||||
proc fun4() =
|
||||
var a = "asdf"
|
||||
var i = 0
|
||||
while i < a.len and i < a.len:
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user