| line | % | coverage | condition |
| 78 | 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';
}
) || [] |
| 179 | 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';
}
) || [] |
| 193 | 100 | | @expr == 1 and not $expr[0]->isa("PPI::Token") |
| 226 | 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';
}
) || [] |
| 233 | 67 | | @expr == 1 and not $expr[0]->isa("PPI::Token") |
| 251 | 67 | | $@ or not $mutant |
| 281 | 50 | | @children and $children[-1]->isa("PPI::Token::Structure") and $children[-1]->content eq ";" |