| line |
!l |
l&&!r |
l&&r |
condition |
|
88
|
271 |
184 |
359 |
not ref $version and $version eq 0 |
|
|
184 |
0 |
0 |
ref $version and _isa_version($version) |
|
101
|
184 |
0 |
0 |
$] < "5.008001" and not $version =~ /\A[0-9]/ |
|
|
184 |
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 |
444 |
defined $req and length $req |
|
275
|
14 |
749 |
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"};} |