| 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 | 1591 | use strict; use utf8; use warnings FATAL => 'all'; | |||
| 3 | 3 | 3 | |||||
| 3 | 3 | 69 | |||||
| 3 | 11 | ||||||
| 3 | 3 | ||||||
| 3 | 13 | ||||||
| 3 | 56 | ||||||
| 3 | 3 | ||||||
| 3 | 102 | ||||||
| 3 | 3 | 3 | 11 | use parent 'DTL::Fast::Expression::Operator::Binary::Gt'; | |||
| 3 | 4 | ||||||
| 3 | 19 | ||||||
| 4 | |||||||
| 5 | $DTL::Fast::OPS_HANDLERS{'<'} = __PACKAGE__; | ||||||
| 6 | |||||||
| 7 | sub dispatch | ||||||
| 8 | { | ||||||
| 9 | 463 | 463 | 0 | 408 | my( $self, $arg1, $arg2, $context) = @_; | ||
| 10 | |||||||
| 11 | 463 | 812 | return $self->SUPER::dispatch($arg2, $arg1, $context); | ||||
| 12 | } | ||||||
| 13 | |||||||
| 14 | 1; |