| line | !l | l&&!r | l&&r | condition | 
 
| 88 | 271 | 183 | 359 | not ref $version and $version eq 0 | 
 
|  | 183 | 0 | 0 | ref $version and _isa_version($version) | 
 
| 101 | 183 | 0 | 0 | $] < "5.008001" and not $version =~ /\A[0-9]/ | 
 
|  | 183 | 0 | 0 | $] < "5.008001" and not $version =~ /\A[0-9]/ and substr($version, 0, 1) ne "v" | 
 
|  | 0 | 0 | 0 | $] < "5.008001" and not $version =~ /\A[0-9]/ and substr($version, 0, 1) ne "v" and length $version < 3 | 
 
| 180 | 2 | 2 | 443 | defined $req and length $req | 
 
| 275 | 14 | 748 | 27 | defined $self->{'minimum'} and defined $self->{'maximum'} | 
 
| 303 | 2 | 1 | 26 | !defined($self->{'minimum'}) || $_ >= $self->{'minimum'} and !defined($self->{'maximum'}) || $_ <= $self->{'maximum'} | 
 
| 462 | 14 | 3 | 383 | @parts == 1 and $parts[0][0] eq ">=" | 
 
| 488 | 30 | 39 | 9 | defined $self->{'minimum'} and $version < $self->{'minimum'} | 
 
| 489 | 53 | 10 | 6 | defined $self->{'maximum'} and $version > $self->{'maximum'} | 
 
| 491 | 49 | 8 | 6 | defined $self->{'exclusions'} and grep {$version == $_;} @{$$self{"exclusions"};} |