Action

Type Alias Action 

Source
pub type Action = ParserAction<StateID, ProdID, AmbigID>;

Aliased Type§

pub enum Action {
    Error,
    Accept,
    Shift(StateID),
    Reduce(ProdID),
    Ambig(AmbigID),
    Goto(StateID),
}

Variants§

§

Error

§

Accept

§

Shift(StateID)

§

Reduce(ProdID)

§

Ambig(AmbigID)

§

Goto(StateID)