1//! Code analysis modules. 2 3mod complexity; 4pub mod counter; 5mod file; 6pub mod stats; 7pub mod trie; 8 9pub use complexity::ComplexityAnalyzer; 10pub use file::FileAnalyzer;