fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
10 lines
491 B
Text
10 lines
491 B
Text
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.
|