1 # Copyright (C) 2005-2009, Parrot Foundation.
6 PGE - the Parrot/Perl Grammar Engine
10 This is the base file for the grammar engine. It basically combines
11 (via .include) each of the separate PGE modules into a single compilation
12 unit, calling the subroutines marked with the C<:load> subpragma for each.
18 .include "compilers/pge/PGE/Match.pir"
19 .include "compilers/pge/PGE/OPTable.pir"
20 .include "compilers/pge/PGE/Regex.pir"
21 .include "compilers/pge/PGE/Exp.pir"
22 .include "compilers/pge/PGE/Perl6Regex.pir"
23 .include "compilers/pge/PGE/P5Regex.pir"
24 .include "compilers/pge/PGE/builtins_gen.pir"
31 # vim: expandtab shiftwidth=4 ft=pir: