Files
ports/textproc/rubygem-parslet1/pkg-descr
T
Sunpoet Po-Chuan Hsieh a054be3109 Add rubygem-parslet1 1.8.2 (copied from rubygem-parslet)
- Add PORTSCOUT
2020-02-21 18:55:30 +00:00

13 lines
533 B
Plaintext

Parslet is a small Ruby library for constructing parsers in the PEG (Parsing
Expression Grammar) fashion.
Parslet makes developing complex parsers easy. It does so by
- providing the best error reporting possible
- not generating reams of code for you to debug
Parslet takes the long way around to make your job easier. It allows for
incremental language construction. Often, you start out small, implementing the
atoms of your language first; parslet takes pride in making this possible.
WWW: https://kschiess.github.io/parslet/