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