rl_lang/utils/mod.rs
1//! Shared utilities used across the rl pipeline.
2//!
3//! - [`errors`] - [`Error`] type and [`Reason`] categories
4//! - [`source`] - [`SourceFile`] carrying source text through the pipeline
5//! - [`span`] - [`Span`] for pointing errors at exact source locations
6//! - [`suggest`] - fuzzy name matching for "did you mean?" hints
7pub mod errors;
8pub mod source;
9pub mod span;
10pub mod suggest;