Parsing Expression grammars. Parsing expression grammars allow for full lookahead and backtracking in time linear to the input size. This makes them more expressive than YACC or BNF, which are limited in the how far they look ahead, and as a consequence how far they can backtrack. They also require more memory than either YACC or BNF to parse an equivalently sized input.
PEG grammars also do not have a separate lexing stage. Lexing and parsing are performed at the same time, using the same language for both.
See wikipedia for additional general information on Parsing Expression Grammars.
.alyn.post. is working on a proposal for a 4th Machine Grammar Baseline, replacing the 3rd baseline's YACC grammar with a PEG grammar. This work is scheduled for inclusion into CLL version 2.0 or CLL version 2.1.
Since PEG does not have a separate lexing stage, any PEG Machine Grammar will also need to express the Lojban Morphology in PEG.
The CLL will need to be updated to account for changes resulting from the translation of the grammar to PEG.
Main Article: CLL PEG Errata