Versions in this module Expand all Collapse all v1 v1.0.1 Jan 18, 2024 v1.0.0 Jan 10, 2024 Changes in this version + type Attrib interface + type Parser struct + func NewParser() *Parser + func (p *Parser) Error(err error, scanner Scanner) (recovered bool, errorAttrib *parseError.Error) + func (p *Parser) Parse(scanner Scanner) (res interface{}, err error) + func (p *Parser) Reset() + type ProdTab [numProductions]ProdTabEntry + type ProdTabEntry struct + Id string + Index int + NTType int + NumSymbols int + ReduceFunc func([]Attrib) (Attrib, error) + String string + type Scanner interface + Scan func() (tok *token.Token)