pub trait CallGraphAnalysis: Analysis {
// Required method
fn get_callgraph(&mut self) -> CallGraph;
}
Expand description
This trait provides features related to call graph extraction and analysis.
Required Methods§
Sourcefn get_callgraph(&mut self) -> CallGraph
fn get_callgraph(&mut self) -> CallGraph
Return the call graph.