/usr/share/perl5/Pegex.pod is in libpegex-perl 0.64-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | =pod
=for comment
DO NOT EDIT. This Pod was generated by Swim v0.1.45.
See http://github.com/ingydotnet/swim-pm#readme
=encoding utf8
=head1 NAME
Pegex - Acmeist PEG Parser Framework
=head1 VERSION
This document describes L<Pegex> version B<0.64>.
=head1 SYNOPSIS
use Pegex;
my $result = pegex($grammar)->parse($input);
or with options:
use Pegex;
use ReceiverClass;
my $parser = pegex($grammar, 'ReceiverClass');
my $result = $parser->parse($input);
or more explicitly:
use Pegex::Parser;
use Pegex::Grammar;
my $pegex_grammar = Pegex::Grammar->new(
text => $grammar,
);
my $parser = Pegex::Parser->new(
grammar => $pegex_grammar,
);
my $result = $parser->parse($input);
or customized explicitly:
{
package MyGrammar;
use Pegex::Base;
extends 'Pegex::Grammar';
has text => "your grammar definition text goes here";
has receiver => "MyReceiver";
}
{
package MyReceiver;
use base 'Pegex::Receiver';
got_some_rule { ... }
got_other_rule { ... }
}
use Pegex::Parser;
my $parser = Pegex::Parser->new(
grammar => MyGrammar->new,
receiver => MyReceiver->new,
);
$parser->parse($input);
my $result = $parser->receiver->data;
=head1 DESCRIPTION
Pegex is an Acmeist parser framework. It allows you to easily create parsers
that will work equivalently in lots of programming languages! The inspiration
for Pegex comes from the parsing engine upon which the postmodern programming
language B<Perl 6> is based on. Pegex brings this beauty to the other
I<just>modern languages that have a normal regular expression engine
available.
Pegex gets it name by combining Parsing Expression Grammars (PEG), with
Regular Expessions (Regex). That's actually what Pegex does.
PEG is the cool new way to elegantly specify recursive descent grammars. The
Perl 6 language is defined in terms of a self modifying PEG language called
B<Perl 6 Rules>. Regexes are familiar to programmers of most modern
programming languages. Pegex defines a simple PEG syntax, where all the
terminals are regexes. This means that Pegex can be quite fast and powerful.
Pegex attempts to be the simplest way to define new (or old) Domain Specific
Languages (DSLs) that need to be used in several programming languages and
environments. Things like JSON, YAML, Markdown etc. It also great for writing
parsers/compilers that only need to work in one language.
=head1 USAGE
The C<Pegex.pm> module itself (this module) is just a trivial way to use the
Pegex framework. It is only intended for the simplest of uses.
This module exports a single function, C<pegex>, which takes a Pegex grammar
string as input. You may also pass a receiver class name after the grammar.
my $parser = pegex($grammar, 'MyReceiver');
The C<pegex> function returns a L<Pegex::Parser> object, on which you would
typically call the C<parse()> method, which (on success) will return a data
structure of the parsed data.
See L<Pegex::API> for more details.
=head1 PEGEX DEBUGGING
Pegex (Pegex::Parser) has many easy to use methods of debugging. See the
"Debugging" section of L<Pegex::Parser> for details.
=head1 SEE ALSO
=over
=item * L<Pegex::Overview>
=item * L<Pegex::API>
=item * L<Pegex::Syntax>
=item * L<Pegex::Tutorial>
=item * L<Pegex::Resources>
=item * L<Pegex::Parser>
=item * L<http://github.com/ingydotnet/pegex-pm>
=item * L<irc://freenode.net#pegex>
=back
=head1 AUTHOR
Ingy döt Net <ingy@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright 2010-2017. Ingy döt Net.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
See L<http://www.perl.com/perl/misc/Artistic.html>
=cut
|