line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Moxie::Object::Immutable; |
2
|
|
|
|
|
|
|
# ABSTRACT: Yet Another (Immutable) Base Class |
3
|
|
|
|
|
|
|
|
4
|
49
|
|
|
49
|
|
483
|
use v5.22; |
|
49
|
|
|
|
|
151
|
|
5
|
49
|
|
|
49
|
|
236
|
use warnings; |
|
49
|
|
|
|
|
88
|
|
|
49
|
|
|
|
|
1544
|
|
6
|
49
|
|
|
|
|
246
|
use experimental qw[ |
7
|
|
|
|
|
|
|
signatures |
8
|
|
|
|
|
|
|
postderef |
9
|
49
|
|
|
49
|
|
234
|
]; |
|
49
|
|
|
|
|
91
|
|
10
|
|
|
|
|
|
|
|
11
|
49
|
|
|
49
|
|
5753
|
use UNIVERSAL::Object::Immutable; |
|
49
|
|
|
|
|
92
|
|
|
49
|
|
|
|
|
3987
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
our $VERSION = '0.07'; |
14
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:STEVAN'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
our @ISA; BEGIN { |
17
|
49
|
|
|
49
|
|
1893
|
@ISA = ( |
18
|
|
|
|
|
|
|
'UNIVERSAL::Object::Immutable', |
19
|
|
|
|
|
|
|
'Moxie::Object', |
20
|
|
|
|
|
|
|
); |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |