Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
ParserTable
Documentation
Constructors
Item ProductionRule Int [ExtendedSymbol] |
type ActionTable = [(Int, ExtendedSymbol, Action)] Source #
data LALRAction Source #
Constructors
LALRShift [Int] | |
LALRReduce Int | |
LALRAccept | |
LALRReject |
Instances
Eq LALRAction Source # | |
Defined in ParserTable | |
Show LALRAction Source # | |
Defined in ParserTable Methods showsPrec :: Int -> LALRAction -> ShowS # show :: LALRAction -> String # showList :: [LALRAction] -> ShowS # |
type LALRActionTable = [([Int], ExtendedSymbol, LALRAction)] Source #