File Coverage

blib/lib/B/Compiling.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 2     2   27016 use strict;
  2         3  
  2         58  
2 2     2   6 use warnings;
  2         2  
  2         85  
3              
4             package B::Compiling;
5             our $AUTHORITY = 'cpan:FLORA';
6             # ABSTRACT: Expose PL_compiling to perl
7             $B::Compiling::VERSION = '0.06';
8 2     2   7 use B;
  2         5  
  2         80  
9 2     2   6 use XSLoader;
  2         4  
  2         84  
10              
11             XSLoader::load(
12             __PACKAGE__,
13             exists $B::Compiling::{VERSION} ? ${ $B::Compiling::{VERSION} } : (),
14             );
15              
16 2         17 use Sub::Exporter -setup => {
17             exports => ['PL_compiling'],
18             groups => { default => ['PL_compiling'] },
19 2     2   854 };
  2         18980  
20              
21             1;
22              
23             __END__