File Coverage

blib/lib/Devel/FindBlessedRefs.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Devel::FindBlessedRefs;
2              
3 3     3   16930 use strict;
  3         7  
  3         108  
4 3     3   17 use warnings;
  3         5  
  3         95  
5 3     3   25 use Carp;
  3         7  
  3         218  
6              
7             require Exporter;
8 3     3   16 use base 'Exporter';
  3         5  
  3         715  
9              
10             our %EXPORT_TAGS = ( all => [qw( find_refs find_refs_with_coderef find_refs_by_coderef )]);
11             our @EXPORT_OK = ( @{$EXPORT_TAGS{all}} );
12              
13             our $VERSION = 1.253;
14              
15             require XSLoader;
16             XSLoader::load('Devel::FindBlessedRefs', $VERSION);
17              
18             *find_refs_by_coderef = \&find_refs_with_coderef;
19              
20             1;