File Coverage

blib/lib/DTL/Fast/Expression/Operator/Binary/Le.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package DTL::Fast::Expression::Operator::Binary::Le;
2 2     2   927 use strict;
  2         5  
  2         52  
3 2     2   9 use utf8;
  2         5  
  2         8  
4 2     2   42 use warnings FATAL => 'all';
  2         6  
  2         66  
5 2     2   9 use parent 'DTL::Fast::Expression::Operator::Binary::Ge';
  2         5  
  2         23  
6              
7             $DTL::Fast::OPS_HANDLERS{'<='} = __PACKAGE__;
8              
9             sub dispatch
10             {
11 18     18 0 37 my ( $self, $arg1, $arg2, $context) = @_;
12              
13 18         55 return $self->SUPER::dispatch($arg2, $arg1, $context);
14             }
15              
16             1;