pub type InvalidTerminalError = InvalidTerminalError<Token, ChunkOrExpressionsNonTerminals, ParseError>;Expand description
type alias for InvalidTerminalError
Aliased Type§
struct InvalidTerminalError {
pub term: Token,
pub reduce_errors: Vec<ParseError>,
/* private fields */
}Fields§
§term: TokenThe terminal that feeded to the parser.
reduce_errors: Vec<ParseError>The reduce action errors.