line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HH::Unispool::Config::File::Token::Numbered::System::Info; |
2
|
|
|
|
|
|
|
|
3
|
9
|
|
|
9
|
|
7047
|
use 5.006; |
|
9
|
|
|
|
|
41
|
|
|
9
|
|
|
|
|
622
|
|
4
|
9
|
|
|
9
|
|
60
|
use base qw( HH::Unispool::Config::File::Token::Numbered ); |
|
9
|
|
|
|
|
19
|
|
|
9
|
|
|
|
|
1806
|
|
5
|
9
|
|
|
9
|
|
56
|
use strict; |
|
9
|
|
|
|
|
22
|
|
|
9
|
|
|
|
|
313
|
|
6
|
9
|
|
|
9
|
|
51
|
use warnings; |
|
9
|
|
|
|
|
18
|
|
|
9
|
|
|
|
|
360
|
|
7
|
9
|
|
|
9
|
|
60
|
use AutoLoader qw(AUTOLOAD); |
|
9
|
|
|
|
|
983
|
|
|
9
|
|
|
|
|
67
|
|
8
|
9
|
|
|
9
|
|
374
|
use Error qw(:try); |
|
9
|
|
|
|
|
21
|
|
|
9
|
|
|
|
|
72
|
|
9
|
9
|
|
|
9
|
|
2006
|
use HH::Unispool::Config::File::Token qw( :rx :frm ); |
|
9
|
|
|
|
|
27
|
|
|
9
|
|
|
|
|
9540
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# Used by _value_is_allowed |
12
|
|
|
|
|
|
|
our %ALLOW_ISA = ( |
13
|
|
|
|
|
|
|
); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
# Used by _value_is_allowed |
16
|
|
|
|
|
|
|
our %ALLOW_REF = ( |
17
|
|
|
|
|
|
|
); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# Used by _value_is_allowed |
20
|
|
|
|
|
|
|
our %ALLOW_RX = ( |
21
|
|
|
|
|
|
|
'description' => [ '^.*$' ], |
22
|
|
|
|
|
|
|
); |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
# Used by _value_is_allowed |
25
|
|
|
|
|
|
|
our %ALLOW_VALUE = ( |
26
|
|
|
|
|
|
|
); |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# Package version |
29
|
|
|
|
|
|
|
our ($VERSION) = '$Revision: 0.3 $' =~ /\$Revision:\s+([^\s]+)/; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
__END__ |