yapb-0.1.3.2: Yet Another Parser Builder (YAPB)
Safe HaskellSafe-Inferred
LanguageHaskell2010

AutomatonType

Documentation

data Action Source #

Constructors

Shift Int 
Reduce Int 
Accept 

Instances

Instances details
Eq Action Source # 
Instance details

Defined in AutomatonType

Methods

(==) :: Action -> Action -> Bool #

(/=) :: Action -> Action -> Bool #

Show Action Source # 
Instance details

Defined in AutomatonType

type GotoTable = [((Int, String), Int)] Source #