1 2 3 4 5 6 7 8
use crate::code_point::CodePoint; pub mod rlt; pub mod span; pub trait Located { fn location(&self) -> CodePoint; }