How do I get the tree representation of what a template application produces? Like if I have
template foo(bar: expr): stmt =
echo(bar)
How would I tell that "foo(42)" is going to expand to "echo(42)"? Or the equivalent that treeRepr(parseStmt("echo(42)")) would produce.