Erlang - code analysis

I need to parse existing Erlang code.

Does anyone know of a tool that is capable of visually / graphically tracking module calls?

The behavior should be: provide a directory containing the source code, and get the file gui / picture / file calls (module1-> module2-> module3 ....).

Something like UML reconstruction, but ala Erlang?

Thanks.

+4
source share
2 answers

xref in OTP works as follows. It gives you data on what dependencies exist between applications and modules, and gives call schedules. Below is an overview of xref .

+6
source

All Articles