Versions in this module Expand all Collapse all v1 v1.0.1 May 14, 2024 v1.0.0 Sep 23, 2022 Changes in this version + type Attrib interface + type Context interface + type Parser struct + Context Context + 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, interface{}) (Attrib, error) + String string + type Scanner interface + Scan func() (tok *token.Token)