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   1277 use strict; use utf8; use warnings FATAL => 'all';
  2     2   3  
  2     2   47  
  2         8  
  2         1  
  2         10  
  2         37  
  2         2  
  2         66  
3 2     2   7 use parent 'DTL::Fast::Expression::Operator::Binary::Ge';
  2         2  
  2         22  
4              
5             $DTL::Fast::OPS_HANDLERS{'<='} = __PACKAGE__;
6              
7             sub dispatch
8             {
9 18     18 0 20 my( $self, $arg1, $arg2, $context) = @_;
10            
11 18         39 return $self->SUPER::dispatch($arg2, $arg1, $context);
12             }
13              
14             1;