lua_parser

Type Alias InvalidTerminalError

source
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: Token

The terminal that feeded to the parser.

§reduce_errors: Vec<ParseError>

The reduce action errors.