The dump() function is great for converting an Expr into some kind of viewable form for debugging. Is there any function in the Julia ecosystem that will convert it to textual Julia code such that:
e = # any expression assert(e == parse(deparse(e)))
The dump() function is great for converting an Expr into some kind of viewable form for debugging. Is there any function in the Julia ecosystem that will convert it to textual Julia code such that:
e = # any expression assert(e == parse(deparse(e)))