line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Number::ZipCode::JP::Table; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
15
|
use strict; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
104
|
|
4
|
2
|
|
|
2
|
|
12
|
use warnings; |
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
84
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '0.20230929'; |
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
11
|
no warnings 'once'; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
169
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our %ZIP_TABLE = Number::ZipCode::JP::_merge_table( |
11
|
|
|
|
|
|
|
qw/ Number::ZipCode::JP::Table::Area Number::ZipCode::JP::Table::Company / |
12
|
|
|
|
|
|
|
); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub import { |
15
|
3
|
|
|
3
|
|
9
|
my $class = shift; |
16
|
3
|
|
|
|
|
7
|
my $pkg = caller(0); |
17
|
2
|
|
|
2
|
|
14
|
no strict 'refs'; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
161
|
|
18
|
3
|
|
|
|
|
220
|
%{"$pkg\::ZIP_TABLE"} = %ZIP_TABLE; |
|
3
|
|
|
|
|
453
|
|
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
__END__ |