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   86888 use strict;
  1         3  
  1         36  
2 1     1   8 use warnings;
  1         69  
  1         72  
3             package B::Hooks::OP::PPAddr; # git description: v0.05-5-gf0d3ed7
4             # ABSTRACT: Hook into opcode execution
5              
6 1     1   362 use parent qw/DynaLoader/;
  1         381  
  1         6  
7              
8             our $VERSION = '0.06';
9              
10 1     1 1 222 sub dl_load_flags { 0x01 }
11              
12             __PACKAGE__->bootstrap($VERSION);
13              
14             1;
15              
16             __END__