pub type Action = ParserAction<StateID, ProdID, AmbigID>;
pub enum Action { Error, Accept, Shift(StateID), Reduce(ProdID), Ambig(AmbigID), Goto(StateID), }