line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Data::CompactReadonly::V0::Scalar::Null; |
2
|
|
|
|
|
|
|
our $VERSION = '0.0.6'; |
3
|
|
|
|
|
|
|
|
4
|
5
|
|
|
5
|
|
40
|
use warnings; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
150
|
|
5
|
5
|
|
|
5
|
|
23
|
use strict; |
|
5
|
|
|
|
|
7
|
|
|
5
|
|
|
|
|
129
|
|
6
|
5
|
|
|
5
|
|
25
|
use base 'Data::CompactReadonly::V0::Scalar'; |
|
5
|
|
|
|
|
8
|
|
|
5
|
|
|
|
|
857
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
sub _create { |
9
|
7
|
|
|
7
|
|
23
|
my($class, %args) = @_; |
10
|
7
|
|
|
|
|
11
|
my $fh = $args{fh}; |
11
|
7
|
|
|
|
|
33
|
$class->_stash_already_seen(%args); |
12
|
7
|
|
|
|
|
33
|
print $fh $class->_type_byte_from_class(); |
13
|
7
|
|
|
|
|
49
|
$class->_set_next_free_ptr(%args); |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
|
16
|
12
|
|
|
12
|
|
100
|
sub _init { return undef; } |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |