rl-utils 0.2.1

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