Описание тега call-graph
A Call-Graph is a visual representation of calls between functions/procedures/methods etc. Typically created from the entry point of the code through each of the calls.
A Call-Graph is a useful tool in researching problems in your code. By seeing a visual reference of the order calls are performed, it allows the individual to trace back to a piece of code quicker. This allows them to test data output in various points faster by reducing the number of files that will have to be opened and searched to track this data manually.
Questions with this tag would include:
- How to build a call-graph in a particular language.
- Understanding a particular call-graph. This should generally include a visual reference.
Additional information about call graphs can be found on Wikipedia under the entry Call_Graph