Skip to main content

sniff/
callgraph.rs

1#[path = "ref_count_flags.rs"]
2mod flags;
3#[path = "callgraph_refs.rs"]
4mod refs;
5
6pub fn build_references(
7    file_records: &mut [crate::types::FileRecord],
8    graph: &crate::symbol_graph::SymbolGraph,
9) {
10    refs::build_references(file_records, graph);
11}
12
13pub use flags::build_ref_count_flags;