line |
!l |
l&&!r |
l&&r |
condition |
83
|
75 |
5 |
13 |
exists $schema->{'default'} and !defined($struc) && $self->fill_defaults || $self->replace_invalid_values && !$self->_is_valid($struc, $schema) |
161
|
12 |
2 |
3 |
exists $schema->{'maximum'} and $result > $schema->{'maximum'} |
162
|
14 |
2 |
1 |
exists $schema->{'minimum'} and $result < $schema->{'minimum'} |
201
|
2 |
3 |
10 |
$self->hash_keys and exists $schema->{'additionalProperties'} |
|
3 |
0 |
10 |
$self->hash_keys and exists $schema->{'additionalProperties'} and not $schema->{'additionalProperties'} |
210
|
15 |
46 |
10 |
$keys_re and not $key =~ /$keys_re/x |
213
|
58 |
3 |
0 |
!$subschema && &first(sub {
$key =~ /$_/x;
}
, keys %$p_properties) |