File Coverage

blib/lib/Aspect/Pointcut/Logic.pm
Criterion Covered Total %
statement 15 16 93.7
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 23 86.9


line stmt bran cond sub pod time code
1             package Aspect::Pointcut::Logic;
2              
3             # A base class for logic pointcuts
4              
5 21     21   101 use strict;
  21         1275  
  21         598  
6 21     21   81 use warnings;
  21         21  
  21         489  
7 21     21   92 use Carp ();
  21         20  
  21         272  
8 21     21   74 use Params::Util ();
  21         19  
  21         302  
9 21     21   86 use Aspect::Pointcut ();
  21         29  
  21         1494  
10              
11             our $VERSION = '0.97_06';
12             our @ISA = 'Aspect::Pointcut';
13              
14             sub match_runtime {
15 0     0 0   return 0;
16             }
17              
18             1;
19              
20             __END__