make repr handle setters foo= (#17683)

This commit is contained in:
Timothee Cour
2021-04-09 02:37:10 -05:00
committed by GitHub
parent cce1b24b1c
commit 877cc5e4ff
2 changed files with 17 additions and 5 deletions

View File

@@ -1327,13 +1327,16 @@ proc gsub(g: var TSrcGen, n: PNode, c: TContext, fromStmtList = false) =
of nkIdent: n.ident.s
of nkSym: n.sym.name.s
else: ""
proc isAlpha(n: PNode): bool =
if n.kind in {nkIdent, nkSym}:
let tmp = n.getStrVal
result = tmp.len > 0 and tmp[0] in {'a'..'z', 'A'..'Z'}
var useSpace = false
if i == 1 and n[0].kind == nkIdent and n[0].ident.s in ["=", "'"]:
let tmp = n[1].getStrVal
if tmp.len > 0 and tmp[0] in {'a'..'z', 'A'..'Z'}:
# handle `=destroy`, `'big'
discard
else:
if not n[1].isAlpha: # handle `=destroy`, `'big'
useSpace = true
elif i == 1 and n[1].kind == nkIdent and n[1].ident.s == "=":
if not n[0].isAlpha: # handle setters, e.g. `foo=`
useSpace = true
elif i > 0: useSpace = true
if useSpace: put(g, tkSpaces, Space)

View File

@@ -163,6 +163,15 @@ proc `foo bar baz`(): int =
"""
doAssert a2 == a
block: # setters: `foo=`
let a = deb:
proc `foo=`() = discard
doAssert a == """
proc `foo=`() =
discard
"""
block: # bug #14850
block:
let a = deb: