pub type ParseError = ParseError<LineCol>;
Aliased Type§
struct ParseError {
pub location: LineCol,
pub expected: ExpectedSet,
}
Fields§
§location: LineCol
The furthest position the parser reached in the input before failing.
expected: ExpectedSet
The set of literals that failed to match at that position.