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 30 31 32 33 34 35 36 37 38
|
Source: libparse-recdescent-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9),
libmodule-build-perl,
perl
Build-Depends-Indep: libtest-pod-perl,
libtest-warn-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonathan Yu <jawnsy@cpan.org>,
gregor herrmann <gregoa@debian.org>,
Florian Schlichting <fsfs@debian.org>
Standards-Version: 3.9.6
Homepage: https://metacpan.org/release/Parse-RecDescent/
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libparse-recdescent-perl.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libparse-recdescent-perl.git
Testsuite: autopkgtest-pkg-perl
Package: libparse-recdescent-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends}
Breaks: libcss-perl (<< 1.08-1+nmu2),
libmail-imapclient-perl (<< 3.30-2)
Description: Perl module to create and use recursive-descent parsers
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
|