line |
!l |
l&&!r |
l&&r |
condition |
132
|
67 |
0 |
16 |
$word =~ /\A
(.*?)
(?:
's # Dan's
| s' # cookies'
| 've # You've
| 're # We're
| 'll # You'll
| n't # doesn't
| 'd # You'd
| -ish # -ish
)
\z/x and $self->check_word($1) |
148
|
66 |
0 |
1 |
$word =~ /\Anon-(.*)\z/ and $self->check_word($1) |
149
|
65 |
0 |
1 |
$word =~ /\Are-(.*)\z/ and $self->check_word($1) |
152
|
64 |
0 |
1 |
$word =~ m[\A (.*) \z] and $self->check_word($1) |
164
|
35 |
0 |
26 |
$word =~ /\A(.*?)[^A-Za-z]+\z/ and $self->check_word($1) |
166
|
26 |
0 |
9 |
$word =~ /\A[^A-Za-z]+(.*?)\z/ and $self->check_word($1) |