0.5.0
Added
- Ellipsis (
...) — matches zero or more nodes in function args, lists, and block bodiesIO.inspect(...)— any arityfoo(first, ..., last)— capture surrounding argsdef run(_) do ... end— any function body[head, ...]— list with 1+ elements
~psigil — compile-time pattern parsing viaimport ExAST.Sigil~p"IO.inspect(...)"