table of contents
other versions
- wheezy-backports 2.6.4+dfsg-4~bpo70+1
- jessie 2.6.4+dfsg-4
| pyacc(1) | Pascal parser generator | pyacc(1) |
NAME¶
pyacc - Pascal Yacc compiler compiler.USAGE¶
yacc [options] yacc-file[.y] [output-file[.pas]]- -v
- Verbose: Pascal Yacc generates a readable description of the generated parser, written to yacc-file with new extension .lst.
- -d
- Debug: TP Yacc generates a parser with debugging
output.
DESCRIPTION¶
TP Yacc is a program that lets you prepare parsers from the description of input languages by BNF-like grammars. You simply specify the grammar for your target language, augmented with the Turbo Pascal code necessary to process the syntactic constructs, and TP Yacc translates your grammar into the Turbo Pascal code for a corresponding parser subroutine named yyparse.function yyparse : Integer;
More information¶
For more information, see the documentation that comes with TP lex and yacc.AUTHOR¶
Albert Graeff (<ag@muwiinfa.geschichte.uni-mainz.de>, <Dr.Graef@t-online.de>)SEE ALSO¶
ppc386(1) plex(1)| 19 Jan 2000 | Free Pascal |