lib/Aspect/Pointcut/AndOp.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 13 | 13 | 100.0 |
branch | 2 | 2 | 100.0 |
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 0 | 1 | 0.0 |
total | 20 | 21 | 95.2 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Aspect::Pointcut::AndOp; | ||||||
2 | |||||||
3 | 1 | 1 | 4 | use strict; | |||
1 | 1 | ||||||
1 | 27 | ||||||
4 | 1 | 1 | 4 | use warnings; | |||
1 | 0 | ||||||
1 | 17 | ||||||
5 | 1 | 1 | 3 | use Carp; | |||
1 | 1 | ||||||
1 | 42 | ||||||
6 | |||||||
7 | 1 | 1 | 3 | use base 'Aspect::Pointcut::BinOp'; | |||
1 | 1 | ||||||
1 | 371 | ||||||
8 | |||||||
9 | 4871 | 100 | 4871 | 0 | 16248 | sub binop { $_[1] && $_[2] } | |
10 | |||||||
11 | 1; |