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