line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Perl::APIReference::V5_020_000; |
2
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
25
|
|
3
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
24
|
|
4
|
1
|
|
|
1
|
|
5
|
use Sereal::Decoder; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
44
|
|
5
|
1
|
|
|
1
|
|
5
|
use parent 'Perl::APIReference'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
5
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
sub new { |
8
|
3
|
|
|
3
|
1
|
5
|
my $class = shift; |
9
|
3
|
|
|
|
|
7
|
my $pos = tell(*DATA); |
10
|
3
|
|
|
|
|
8
|
binmode(*DATA); |
11
|
3
|
|
|
|
|
9
|
local $/ = undef; |
12
|
|
|
|
|
|
|
|
13
|
3
|
|
|
|
|
225
|
my $data = ; |
14
|
3
|
|
|
|
|
7
|
$data =~ s/^\s+//; |
15
|
|
|
|
|
|
|
|
16
|
3
|
|
|
|
|
11309
|
my $self = bless({ |
17
|
|
|
|
|
|
|
'index' => Sereal::Decoder::decode_sereal($data), |
18
|
|
|
|
|
|
|
perl_version => '5.020000', |
19
|
|
|
|
|
|
|
} => $class); |
20
|
|
|
|
|
|
|
|
21
|
3
|
|
|
|
|
15
|
seek(*DATA, $pos, 0); |
22
|
|
|
|
|
|
|
|
23
|
3
|
|
|
|
|
21
|
return $self; |
24
|
|
|
|
|
|
|
} |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
1; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
__DATA__ |