line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Lingua::JA::Romaji::Valid::Rule::ISO3602Loose; |
2
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
1472
|
use strict; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
125
|
|
4
|
3
|
|
|
3
|
|
27
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
102
|
|
5
|
3
|
|
|
3
|
|
15
|
use base qw( Lingua::JA::Romaji::Valid::Rule ); |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
1053
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
__PACKAGE__->valid_consonants(qw( |
8
|
|
|
|
|
|
|
k s t n h m y r g z d b p |
9
|
|
|
|
|
|
|
ky sy ty ny hy my ry gy zy by py |
10
|
|
|
|
|
|
|
sh ch j dy |
11
|
|
|
|
|
|
|
)); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__PACKAGE__->should_delete(qw()); |
14
|
|
|
|
|
|
|
__PACKAGE__->should_add(qw( wa wo shi chi tsu ji kwa gwa fu )); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->filters(qw( |
17
|
|
|
|
|
|
|
normalize_n_with_apostrophe |
18
|
|
|
|
|
|
|
normalize_syllabic_n |
19
|
|
|
|
|
|
|
normalize_geminate_tch |
20
|
|
|
|
|
|
|
)); |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
__END__ |