While browsing through source code in my IDE I'll sometimes wish I could see a call stack/s or function call graph from a particular point in the code (while the program isn't running) to help me understand the sequence of events better.
An example of the functionality I'd like to see is: I click a function called 'sendNotificationEmail' And a 'stack' of functions is displayed (owner is to the right):
sendNotificationEmail->EmergencyNotificator->CheckIfServersOnFire->UpdateThread->Main
My question is: Can any ides/plugins/or otherwise display such information, and if not - why?
This question isn't IDE or language specific.