line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
2
|
|
|
2
|
|
56903
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
81
|
|
2
|
2
|
|
|
2
|
|
10
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
121
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
package B::Compiling; |
5
|
|
|
|
|
|
|
BEGIN { |
6
|
2
|
|
|
2
|
|
60
|
$B::Compiling::AUTHORITY = 'cpan:FLORA'; |
7
|
|
|
|
|
|
|
} |
8
|
|
|
|
|
|
|
{ |
9
|
|
|
|
|
|
|
$B::Compiling::VERSION = '0.04'; |
10
|
|
|
|
|
|
|
} |
11
|
|
|
|
|
|
|
# ABSTRACT: Expose PL_compiling to perl |
12
|
|
|
|
|
|
|
|
13
|
2
|
|
|
2
|
|
21
|
use B; |
|
2
|
|
|
|
|
12
|
|
|
2
|
|
|
|
|
126
|
|
14
|
2
|
|
|
2
|
|
11
|
use XSLoader; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
232
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
XSLoader::load( |
17
|
|
|
|
|
|
|
__PACKAGE__, |
18
|
|
|
|
|
|
|
exists $B::Compiling::{VERSION} ? ${ $B::Compiling::{VERSION} } : (), |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
|
21
|
2
|
|
|
|
|
21
|
use Sub::Exporter -setup => { |
22
|
|
|
|
|
|
|
exports => ['PL_compiling'], |
23
|
|
|
|
|
|
|
groups => { default => ['PL_compiling'] }, |
24
|
2
|
|
|
2
|
|
2014
|
}; |
|
2
|
|
|
|
|
31071
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__END__ |