Scroll to navigation
YAPPS2(1) |
General Commands Manual |
YAPPS2(1) |
NAME¶
yapps2 - generate python parser code from grammar description file
SYNOPSIS¶
yapps2 [-h] [-i, --context-insensitive-scanner]
[-t, --indent-with-tabs] [--dump]
grammar_file[parser_file]
DESCRIPTION¶
yapps2 generates python parser code from a grammar description file.
OPTIONS¶
- -h, --help
- show a help message and exit
- -i, --context-insensitive-scanner
- Scan all tokens. See the documentation for details.
- -t, --indent-with-tabs
- Use tabs instead of four spaces for indentation in generated code.
- --dump
- Dump out grammar information.
- grammar_file
- grammar description file (input)
- parser_file
- Name of the output file to be generated. The grammar file's name, with .py
appended, will be used, if omitted.