codehelion_core/lib.rs
1//! Analysis core for codehelion: engine-side logic that the CLI layer drives.
2//!
3//! This is the engine layer of the workspace. The dependency direction is
4//! strictly `cli -> core`: nothing here may reach back into the CLI, the store
5//! or any frontend crate. Keeping the boundary at the crate level makes it
6//! mechanically enforceable.
7
8pub mod boilerplate;
9pub mod candidate;
10pub mod clone_class;
11pub mod conditional;
12pub mod control_flow;
13pub mod discovery;
14pub mod doctor;
15pub mod engine;
16pub mod execution;
17pub mod features;
18pub mod frontend;
19pub mod grouping;
20pub mod ir;
21pub mod maximal;
22pub mod near_match;
23pub mod paths;
24pub mod priority;
25pub mod semantic;
26pub mod stable_id;
27pub mod structural;
28pub mod substitution;
29pub mod test_code;
30pub mod types;
31pub mod verify;