Skip to content

Fix recursive functions when fun_name shadowed

Melwyn Saldanha requested to merge fix/recursive-fun-shadowed into dev

type:fixed

Fixes #1404 (closed)

There were 2 cases where tail-call recursion check failed

  1. parameter shadows function name
  2. function name is shadowed by some binding in the body of the function

Changelog details: Fixes bug in tail-call recursion check

Edited by Melwyn Saldanha

Merge request reports