The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Perl::Tags::Hybrid

Combine the results of multiple parsers, for example Perl::Tags::Naive and Perl::Tags::PPI.

SYNOPSIS

    my $parser = Perl::Tags::Hybrid->new(
        taggers => [
            Perl::Tags::Naive->new,
            Perl::Tags::PPI->new,
        ],
    );

get_tags_for_file

Registers the results from running each sub-taggers