codelore-lib 0.26.0

CodeLore — Behavioral Code Analyzer library
Documentation
1
2
3
4
5
6
7
8
9
//! The single API surface `codelore-cli` imports through. Internal modules
//! stay `pub` because the integration-test crate needs deep white-box access,
//! but the CLI binary reaches the library only via these re-exports — so the
//! CLI↔library contract is enumerated in exactly one place.
pub use crate::{AnalysisName, CodeLoreError, Options, Result};
pub use crate::{
    analyses, analysis, cache, calibration, constants, defect_calibration, enrichment, external,
    facts, options, output, provenance, quality_gates, repo,
};