Author: fperrad
Date: Thu May 4 00:04:46 2006
New Revision: 12499
Modified:
trunk/lib/Parrot/Docs/Section/Compilers.pm
Log:
- merge AST & IMCC sections
- add PAST & POST sections
Modified: trunk/lib/Parrot/Docs/Section/Compilers.pm
==============================================================================
--- trunk/lib/Parrot/Docs/Section/Compilers.pm (original)
+++ trunk/lib/Parrot/Docs/Section/Compilers.pm Thu May 4 00:04:46 2006
@@ -40,10 +40,17 @@
return $self->SUPER::new(
'Compilers', 'compilers.html', '',
- $self->new_group( 'AST', '', 'compilers/ast' ),
- $self->new_group( 'IMCC', '', 'compilers/imcc' ),
- $self->new_group( 'PGE', '', 'compilers/pge' ),
- $self->new_group( 'TGE', '', 'compilers/tge' ),
+ $self->new_group( 'IMCC', 'the Intermediate Code Compiler for Parrot',
+ 'compilers/ast',
+ 'compilers/imcc' ),
+ $self->new_group( 'PGE', 'the Parrot Grammar Engine',
+ 'compilers/pge' ),
+ $self->new_group( 'TGE', 'the Tree Grammar Engine',
+ 'compilers/tge' ),
+ $self->new_group( 'PAST', 'the Parrot/Punie Abstract Syntax Tree',
+ 'compilers/past' ),
+ $self->new_group( 'POST', 'the Parrot/Punie Opcode Syntax Tree',
+ 'compilers/post' ),
);
}