I am trying to get an idea of all of the functions in my code that a specific script calls. Is there a way in Julia that I can run a file, and see all of the functions that are called specifically within my own code?
I know profiling may be an option, but I am unsure if that will actually give me functions names and if I could specify to only look through internal functions (I want to avoid base functions in the output).
--trace-compile
come to mind. It would only list functions that haven't yet been compiled though. – carstenbauer