Created
October 29, 2015 07:31
-
-
Save tonini/01c0e4ba545c62e87785 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def parse_definitions(ast) do | |
| acc = [] | |
| Macro.postwalk(ast, acc, fn | |
| {:def, [line], [{name, _, _}, _]} -> | |
| [{:def, name}, {:line, line}] | |
| other -> other | |
| end) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment