* lib/Parrot/Pmc2c/MethodEmitter.pm:
[parrot.git] / compilers / pge / PGE.pir
blob9855ae1c59dd7b3e8a6a7d1db5ca7e93aeaa8339
1 =head1 TITLE
3 PGE - the Parrot/Perl Grammar Engine
5 =head2 Description
7 This is the base file for the grammar engine.  It basically combines
8 (via .include) each of the separate PGE modules into a single compilation
9 unit, calling the subroutines marked with the C<:load> subpragma for each.
11 =cut
13 .namespace [ "PGE" ]
15 .include "compilers/pge/PGE/Match.pir"
16 .include "compilers/pge/PGE/OPTable.pir"
17 .include "compilers/pge/PGE/Regex.pir"
18 .include "compilers/pge/PGE/Exp.pir"
19 .include "compilers/pge/PGE/Perl6Regex.pir"
20 .include "compilers/pge/PGE/P5Regex.pir"
21 .include "compilers/pge/PGE/builtins_gen.pir"
24 # Local Variables:
25 #   mode: pir
26 #   fill-column: 100
27 # End:
28 # vim: expandtab shiftwidth=4 ft=pir: