pub type ParseError<E> = Located<ParseErrorKind<E>>;Expand description
A parsing error wrapped from lalrpop_util’s error type
Aliased Type§
pub struct ParseError<E> {
inner: ParseErrorKind<E>,
pos: TextRange,
current_file: Option<FileId>,
path: Option<PathBuf>,
file_override: FileOverride,
line_number: u32,
column: u32,
}Fields§
§inner: ParseErrorKind<E>Inner error, without location information
pos: TextRangePosition at which the error occurred
current_file: Option<FileId>File identifier for the error
path: Option<PathBuf>Path corresponding to the file identifier
file_override: FileOverrideOverriden file location
line_number: u32Resolved line number
column: u32Resolved column number