mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 22:10:33 +00:00
Fix method recursion bug.
Additional checks for method call transformations.
This commit is contained in:
@@ -624,7 +624,11 @@ proc transformCall(c: PTransf, n: PNode): PTransNode =
|
||||
# bugfix: check after 'transformSons' if it's still a method call:
|
||||
# use the dispatcher for the call:
|
||||
if s.sons[0].kind == nkSym and s.sons[0].sym.kind == skMethod:
|
||||
result = methodCall(s).PTransNode
|
||||
let t = lastSon(s.sons[0].sym.ast)
|
||||
if t.kind == nkSym and sfDispatcher in t.sym.flags:
|
||||
result = methodCall(s).PTransNode
|
||||
else:
|
||||
result = s.PTransNode
|
||||
else:
|
||||
result = s.PTransNode
|
||||
|
||||
|
||||
Reference in New Issue
Block a user