Text-WordDiff

 view release on metacpan or  search on metacpan

lib/Text/WordDiff.pm  view on Meta::CPAN

    }
    $out_handler->( $style->file_footer() );

    return defined $output ? $output : $hunks;
}

package Text::WordDiff::Base;

sub new {
    my ($class, $opts) = @_;
    return bless { %{$opts} } => $class;
}


sub file_header  {
    my $self = shift;
    my $fn1 = $self->filename_a;
    my $fn2 = $self->filename_b;
    return '' unless defined $fn1 && defined $fn2;

    my $p1 = $self->filename_prefix_a;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 2.436 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-d29e8ade9f55 )