//! Dead code detection with entry point analysis and reachability.
//!
//! Provides:
//! - `Detector` — orchestrates entry point detection, reachability, and classification
//! - `EntryPointDetector` — identifies production and test entry points
//! - `ReachabilityAnalyzer` — BFS from entry points
//! - `DeadCodeClassifier` — classifies and scores dead code findings
pub use DeadCodeClassifier;
pub use Detector;
pub use EntryPointDetector;
pub use FeatureFlagDetector;