989772c9ac
had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
16 lines
821 B
Text
16 lines
821 B
Text
RecDescent incrementally generates top-down recursive-descent text
|
|
parsers from simple yacc-like grammar specifications. It provides:
|
|
|
|
* Regular expressions or literal strings as terminals (tokens)
|
|
* Multiple (non-contiguous) productions for any rule
|
|
* Repeated, optional and alternate subrules within productions
|
|
* Late-bound (run-time dispatched) subrules
|
|
* Full access to Perl within actions specified as part of the grammar
|
|
* Simple automated error reporting during generation and parsing
|
|
* The ability to commit to, uncommit to, or reject particular
|
|
productions during a parse
|
|
* Incremental extension of the parsing grammar (even during a parse)
|
|
* The ability to retrieve the generated parsing code.
|
|
|
|
Author: Damian Conway <damian@conway.org>
|
|
WWW: http://search.cpan.org/dist/Parse-RecDescent/
|