yapb-0.1.1: Yet Another Parser Builder (YAPB)

Safe HaskellSafe
LanguageHaskell2010

AutomatonType

Documentation

data Action Source #

Constructors

Shift Int 
Reduce Int 
Accept 
Instances
Eq Action Source # 
Instance details

Defined in AutomatonType

Methods

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

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

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