parrotcode: Parse and compile glob notation expressions. | |
Contents | Libraries |
Glob - Parse and compile glob notation expressions.
A parser for shell-stype glob notation.
compile_glob(PMC source, PMC adverbs :slurpy :named)
source
.
Normally this function is obtained using compreg 'PGE::Glob'
instead of calling it directly.target
named parameter is supplied,
then it will return the parse tree (target='parse'),
the expression tree (target='exp'),
or the resulting PIR code (target='PIR').glob(PMC mob, PMC adverbs :slurpy :named)
PGE::Match
object.glob_literal(PMC mob, PMC adverbs)
*
or [
.
Return the matched portion,
with the result_object
set to the decoded literal.glob_quest(PMC mob, PMC adverbs)
?
wildcard character in a glob.
For this we just return a CCShortcut that is set to '.'glob_star(PMC mob, PMC adverbs)
*
wildcard character in a glob.
This is a little bit more complex,
as we have to return a quantified '.'.glob_enum(PMC mob, PMC adverbs)
glob_alt(PMC mob, PMC adverbs)
PGE::Glob was originally authored by Jonathan Scott Duff (duff@pobox.com), It has been updated for later versions of PGE by Patrick R. Michaud (pmichaud@pobox.com).
|