debtmap 0.16.6

Code complexity and technical debt analyzer
Documentation
//! Call graph analysis module for function relationship tracking
//!
//! This module provides functionality for building and analyzing call graphs,
//! including pattern detection, criticality analysis, and cross-file resolution.
//!
//! This module has been refactored into smaller, focused submodules
//! to improve maintainability and comply with module size limits (<500 lines each).

mod criticality;
mod cross_file;
mod graph_operations;
mod pattern_detection;
#[cfg(test)]
mod pure_function_tests;
mod test_analysis;
#[cfg(test)]
mod tests;
mod types;

#[cfg(test)]
pub(crate) use types::FunctionNode;
pub use types::{
    CallGraph, CallType, ExactFunctionKey, FunctionCall, FunctionId, FuzzyFunctionKey,
    MatchStrategy, SimpleFunctionKey,
};

// Re-export commonly used functions from CallGraph
pub use types::CallGraph as Graph;