Hello, Is there any way to obtain parent of AST node? I want to find the enclosing proc of macro callsite().
macro myMacro(e: expr): stmt = echo "name of enclosing function: " ??? proc myFunc() = myMacro(0) Run
macro myMacro(e: expr): stmt = echo "name of enclosing function: " ??? proc myFunc() = myMacro(0)