[t] Refactor some namespace pmc tests to use throws_like
[parrot.git] / compilers / pge / PGE.pir
blob1e81a160ab68a6608ca125c0e34736f9ef77ca66
1 # Copyright (C) 2005-2009, Parrot Foundation.
2 # $Id$
4 =head1 TITLE
6 PGE - the Parrot/Perl Grammar Engine
8 =head2 Description
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.
14 =cut
16 .namespace [ "PGE" ]
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"
27 # Local Variables:
28 #   mode: pir
29 #   fill-column: 100
30 # End:
31 # vim: expandtab shiftwidth=4 ft=pir: