File Coverage

blib/lib/B/Hooks/OP/PPAddr.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1 1     1   20332 use strict;
  1         1  
  1         24  
2 1     1   3 use warnings;
  1         1  
  1         40  
3             package B::Hooks::OP::PPAddr; # git description: 0.04_01-4-gecc7b66
4             # ABSTRACT: Hook into opcode execution
5              
6 1     1   356 use parent qw/DynaLoader/;
  1         233  
  1         4  
7              
8             our $VERSION = '0.05';
9              
10 1     1 1 136 sub dl_load_flags { 0x01 }
11              
12             __PACKAGE__->bootstrap($VERSION);
13              
14             1;
15              
16             __END__