File Coverage

blib/lib/RPerl/Operation/Expression/Operator/Logical.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2             package RPerl::Operation::Expression::Operator::Logical;
3 5     5   1844 use strict;
  5         13  
  5         137  
4 5     5   30 use warnings;
  5         14  
  5         114  
5 5     5   32 use RPerl::AfterSubclass;
  5         11  
  5         608  
6             our $VERSION = 0.001_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 5     5   37 use parent qw(RPerl::Operation::Expression::Operator);
  5         14  
  5         34  
10 5     5   269 use RPerl::Operation::Expression::Operator;
  5         16  
  5         174  
11              
12             # [[[ CRITICS ]]]
13             ## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
14             ## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils
15              
16             # [[[ OO PROPERTIES ]]]
17             our hashref $properties = {};
18              
19             1; # end of class