Trait Error
lite_parser::traits
pub trait Error { type Position; fn reasons(&self) -> &[(Self::Position, &'static str)]; fn add_reason(self, position: Self::Position, reason: &'static str) -> Self; }
type Position
fn reasons(&self) -> &[(Self::Position, &'static str)]
fn add_reason(self, position: Self::Position, reason: &'static str) -> Self
impl Error for SimpleError
type Position = SimplePosition