Go to the first, previous, next, last section, table of contents.
GP is a parser generator. The input to gp
is an annotated LL(1)
attribute grammar. From this input, gp
generates a TOM class
that implements a recursive descent parser for that grammar. Each rule
of the grammar becomes a method of the parser class.
Go to the first, previous, next, last section, table of contents.