line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
927
|
use strict; use warnings; |
|
1
|
|
|
1
|
|
1
|
|
|
1
|
|
|
|
|
30
|
|
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
49
|
|
2
|
|
|
|
|
|
|
package Module::Install::InlineModule; |
3
|
|
|
|
|
|
|
our $VERSION = '0.03'; |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
3
|
use base 'Module::Install::Base'; |
|
1
|
|
|
|
|
9
|
|
|
1
|
|
|
|
|
512
|
|
6
|
1
|
|
|
1
|
|
983
|
use Inline::Module(); |
|
1
|
|
|
|
|
2855
|
|
|
1
|
|
|
|
|
82
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub inline { |
9
|
0
|
|
|
0
|
0
|
|
my ($self, %args) = @_; |
10
|
|
|
|
|
|
|
|
11
|
0
|
|
|
|
|
|
my $meta = \%args; |
12
|
0
|
|
|
|
|
|
my $makemaker = {}; |
13
|
0
|
|
|
|
|
|
my $postamble = Inline::Module::postamble( |
14
|
|
|
|
|
|
|
$makemaker, |
15
|
|
|
|
|
|
|
inline => $meta, |
16
|
|
|
|
|
|
|
); |
17
|
0
|
|
|
|
|
|
$self->postamble($postamble); |
18
|
0
|
|
|
|
|
|
for my $module (Inline::Module->included_modules($meta)) { |
19
|
0
|
|
|
|
|
|
$self->include($module); |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |