Trait CallGraphAnalysis

Source
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§

Source

fn get_callgraph(&mut self) -> CallGraph

Return the call graph.

Implementors§