| line | % | coverage | condition |
| 161 | 100 | | $doc->find(sub {
my $node = $_[1];
return 0 unless $node->isa('PPI::Statement::Break');
return 0 unless my $first = $node->schild(0);
return $first->content eq 'return';
}
) || [] |
| 173 | 67 | | $expr->isa("PPI::Token::Structure") and $expr->content eq ";" |
| 179 | 100 | | $expr->isa("PPI::Token::Word") and $expr->content =~ /^(?:if|unless|while|until|for|foreach)$/ |
| 210 | 50 | | $doc->find(sub {
my $node = $_[1];
return 0 unless $node->isa('PPI::Statement::Break');
return 0 unless my $first = $node->schild(0);
return $first->content eq 'return';
}
) || [] |
| 217 | 33 | | $expr->isa("PPI::Token::Structure") and $expr->content eq ";" |
| 224 | 33 | | $expr->isa("PPI::Token::Word") and $expr->content =~ /^(?:if|unless|while|until|for|foreach)$/ |
| 235 | 33 | | $@ or not $mutant |