blib/lib/DTL/Fast/Expression/Operator/Binary/Lt.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::Lt; | ||||||
2 | 3 | 3 | 1279 | use strict; | |||
3 | 7 | ||||||
3 | 71 | ||||||
3 | 3 | 3 | 13 | use utf8; | |||
3 | 6 | ||||||
3 | 12 | ||||||
4 | 3 | 3 | 61 | use warnings FATAL => 'all'; | |||
3 | 6 | ||||||
3 | 134 | ||||||
5 | 3 | 3 | 14 | use parent 'DTL::Fast::Expression::Operator::Binary::Gt'; | |||
3 | 6 | ||||||
3 | 13 | ||||||
6 | |||||||
7 | $DTL::Fast::OPS_HANDLERS{'<'} = __PACKAGE__; | ||||||
8 | |||||||
9 | sub dispatch | ||||||
10 | { | ||||||
11 | 461 | 461 | 0 | 883 | my ( $self, $arg1, $arg2, $context) = @_; | ||
12 | |||||||
13 | 461 | 1102 | return $self->SUPER::dispatch($arg2, $arg1, $context); | ||||
14 | } | ||||||
15 | |||||||
16 | 1; |