1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Source: libparse-recdescent-perl
Section: perl
Priority: optional
Maintainer: Rafael Laboissiere <rafael@debian.org>
Standards-Version: 3.8.0
Build-Depends: debhelper (>= 7.0.0), quilt
Build-Depends-Indep: libtest-pod-perl, libversion-perl
Homepage: http://search.cpan.org/dist/Parse-RecDescent/
Vcs-Svn: svn://svn.debian.org/svn/private/rafael/deb-pkg/libparse-recdescent-perl/trunk/
Vcs-Browser: http://svn.debian.org/wsvn/private/rafael/deb-pkg/libparse-recdescent-perl/
Package: libparse-recdescent-perl
Architecture: all
Depends: perl (>= 5.8), libversion-perl
Description: generates recursive-descent parsers in Perl
The Perl module Parse::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 sub-rules within productions,
* Late-bound (run-time dispatched) sub-rules
* Full access to Perl within actions specified as part of the grammar,
* Simple automated error reporting during parser 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.
|