List of function called

Hi,
Let’s assume I have a module.
I call a function inside that module.(1)
This function calls other functions inside that module.
1/ is there a way to know the location/lign where the first function is called (1)
2/ is there a way to get the list of functions called in that module after calling the first function?
I have looked at stacktrace but i can’t manage to make it work.
Thanks

The package Cthulhu.jl has a slightly more general scope, i.e. figuring out type inference, but it’s a good way to crawl recursively through the stack trace. By pressing E you can always jump to the respective line of code too.

1 Like

Linking a related thread:

1 Like