The type of an LALR conflict.
Union case | Description |
Full Usage:
ReduceReduce(Production1, Production2)
Parameters:
Production
Production2 : Production
|
A Reduce-Reduce conflict
|
Full Usage:
ShiftReduce(StateToShiftTo, ProductionToReduce)
Parameters:
uint32
ProductionToReduce : Production
|
A Shift-Reduce conflict
|
Static member | Description |
Full Usage:
LALRConflictType.Create(act1) (act2)
Parameters:
LALRAction
act2 : LALRAction
Returns: LALRConflictType
|
Creates an `LALRConflictType` from the given conflicting `LALRAction`s. An exception is raised if the actions are neither both "reduce" nor a "shift" and a "reduce".
|