pub trait LocatedError {
    fn location(&self) -> (usize, usize);
}
Expand description

Error with a location info.

Required Methods

get error happened location in source input.

Implementors