Version 16 of parser generator

Updated 2020-02-17 15:45:53 by SEH

A parser generator is an application which generates a parser. Sometimes also called a 'compiler compiler'.

The usual input is a formal specification of the grammar the parser has to recognize, plus code implementing the actions the parser has to take when recognizing the various parts of its input. The result is an implementation of the parser in some language, often C.

Parser generators: