codehelion-core 0.1.0

Engine and intermediate representation for the codehelion source-audit tool.
Documentation
//! Analysis core for codehelion: engine-side logic that the CLI layer drives.
//!
//! This is the engine layer of the workspace. The dependency direction is
//! strictly `cli -> core`: nothing here may reach back into the CLI, the store
//! or any frontend crate. Keeping the boundary at the crate level makes it
//! mechanically enforceable.

pub mod boilerplate;
pub mod candidate;
pub mod clone_class;
pub mod conditional;
pub mod control_flow;
pub mod discovery;
pub mod doctor;
pub mod engine;
pub mod execution;
pub mod features;
pub mod frontend;
pub mod grouping;
pub mod ir;
pub mod maximal;
pub mod near_match;
pub mod paths;
pub mod priority;
pub mod semantic;
pub mod stable_id;
pub mod structural;
pub mod substitution;
pub mod test_code;
pub mod types;
pub mod verify;