line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package DTL::Fast::Expression::Operator::Binary::And; |
2
|
4
|
|
|
4
|
|
4118
|
use strict; use utf8; use warnings FATAL => 'all'; |
|
4
|
|
|
4
|
|
10
|
|
|
4
|
|
|
4
|
|
120
|
|
|
4
|
|
|
|
|
23
|
|
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
27
|
|
|
4
|
|
|
|
|
110
|
|
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
257
|
|
3
|
4
|
|
|
4
|
|
21
|
use parent 'DTL::Fast::Expression::Operator::Binary::Logical'; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
35
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
$DTL::Fast::OPS_HANDLERS{'and'} = __PACKAGE__; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
sub dispatch |
8
|
|
|
|
|
|
|
{ |
9
|
730
|
|
|
730
|
0
|
1255
|
my( $self, $arg1, $context ) = @_; |
10
|
|
|
|
|
|
|
|
11
|
730
|
50
|
|
|
|
2912
|
if( UNIVERSAL::can($arg1, 'and') ) |
12
|
|
|
|
|
|
|
{ |
13
|
0
|
|
|
|
|
0
|
return $arg1->and($self->get_b($context)); |
14
|
|
|
|
|
|
|
} |
15
|
|
|
|
|
|
|
else |
16
|
|
|
|
|
|
|
{ |
17
|
730
|
|
100
|
|
|
3168
|
return $arg1 && $self->get_b($context); |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |