1# Copyright (C) 2005-2009, Parrot Foundation.
2
3=head1 TITLE
4
5PGE - the Parrot/Perl Grammar Engine
6
7=head1 DESCRIPTION
8
9This is the base file for the grammar engine.  It basically combines
10(via .include) each of the separate PGE modules into a single compilation
11unit, calling the subroutines marked with the C<:load> subpragma for each.
12
13=cut
14
15.namespace [ "PGE" ]
16
17.include "compilers/pge/PGE/Match.pir"
18.include "compilers/pge/PGE/OPTable.pir"
19.include "compilers/pge/PGE/Regex.pir"
20.include "compilers/pge/PGE/Exp.pir"
21.include "compilers/pge/PGE/Perl6Regex.pir"
22.include "compilers/pge/PGE/P5Regex.pir"
23.include "compilers/pge/PGE/builtins_gen.pir"
24
25
26# Local Variables:
27#   mode: pir
28#   fill-column: 100
29# End:
30# vim: expandtab shiftwidth=4 ft=pir:
31