#![cfg_attr(coverage_nightly, coverage(off))]
mod build;
pub(crate) mod helpers;
pub(crate) mod sqlite_backend;
mod types;
pub(crate) use types::DefinitionType;
pub use types::{
AgentContextIndex, FunctionEntry, GraphMetrics, IndexManifest, IndexStats, QualityMetrics,
};
#[cfg(test)]
pub(crate) use helpers::{
build_call_graph, build_indices, compute_graph_metrics, compute_name_frequency,
};
#[cfg(test)]
mod sqlite_falsification_tests;
#[cfg(test)]
mod sqlite_falsification_tests_part2;
#[cfg(test)]
mod tests;