mix xref.calls
You're seeing just the function
calls
, go back to mix xref module for more information.
This function is deprecated. Use compilation tracers described in the Code module.
Specs
Returns a list of information of all the runtime function calls in the project.
Each item in the list is a map with the following keys:
:callee
- a tuple containing the module, function, and arity of the call:line
- an integer representing the line where the function is called:file
- a binary representing the file where the function is called:caller_module
- the module where the function is called
This function returns an empty list when used at the root of an umbrella project because there is no compile manifest to extract the function call information from. To get the function calls of each child in an umbrella, execute the function at the root of each individual application.