fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / compilers / pct / PCT.pir
blob48a8105165374e6278b9ec5d8aa0abccd124ab0a
1 # $Id$
3 =head1 NAME
5 PCT - Parrot compiler toolkit
7 =head1 DESCRIPTION
9 This file loads all of the modules typically used in the
10 standard Parrot Compiler Toolkit.
12 =cut
14 .namespace [ 'PCT' ]
16 .sub '__onload' :load :init
17     load_bytecode 'PCT/Grammar.pbc'
18     load_bytecode 'PCT/PAST.pbc'
19     #  we don't need to explicitly load HLLCompiler, because
20     #  it's already loaded by PAST.pbc
21     .return ()
22 .end
24 =head1 AUTHOR
26 Patrick Michaud <pmichaud@pobox.com> is the author and maintainer.
27 Please send patches and suggestions to the Parrot porters or
28 Perl 6 compilers mailing lists.
30 =head1 HISTORY
32 2007-11-29  Refactored PCT into separate modules for grammar, past, compiler
33 2006-11-20  Patrick Michaud added first draft of POD documentation.
35 =head1 COPYRIGHT
37 Copyright (C) 2006-2008, Parrot Foundation.
39 =cut
41 # Local Variables:
42 #   mode: pir
43 #   fill-column: 100
44 # End:
45 # vim: expandtab shiftwidth=4 ft=pir: