logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pegex::Module - Base Class for Pegex Grammar Interface Modules

Author

       Ingy döt Net <ingy@cpan.org>

Description

       The module in the Synopsis above is a complete language parsing module. It just inherits from
       Pegex::Module, and then overrides the "grammar_class" and "receiver_class" attributes. Pegex::Module
       provides the "parse()" method.

Name

       Pegex::Module - Base Class for Pegex Grammar Interface Modules

Synopsis

           package MyLanguage;
           use Pegex::Base;
           extends 'Pegex::Module';

           use Pegex::Parser;

           has parser_class => 'Pegex::Parser';
           has grammar_class => 'MyLanguage::Grammar';
           has receiver_class => 'MyLanguage::AST';

           1;

Xxx

       At this point you must specify the "parser_class" attribute as well. The inheritance of this default is
       not working.

See Also