blib/lib/Aspect/Pointcut/Logic.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 12 | 13 | 92.3 |
branch | n/a | ||
condition | n/a | ||
subroutine | 4 | 5 | 80.0 |
pod | 0 | 1 | 0.0 |
total | 16 | 19 | 84.2 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package Aspect::Pointcut::Logic; | ||||||
2 | |||||||
3 | # A base class for logic pointcuts | ||||||
4 | |||||||
5 | 26 | 26 | 132 | use strict; | |||
26 | 45 | ||||||
26 | 756 | ||||||
6 | 26 | 26 | 134 | use Carp (); | |||
26 | 41 | ||||||
26 | 369 | ||||||
7 | 26 | 26 | 153 | use Params::Util (); | |||
26 | 44 | ||||||
26 | 342 | ||||||
8 | 26 | 26 | 264 | use Aspect::Pointcut (); | |||
26 | 44 | ||||||
26 | 2110 | ||||||
9 | |||||||
10 | our $VERSION = '1.04'; | ||||||
11 | our @ISA = 'Aspect::Pointcut'; | ||||||
12 | |||||||
13 | sub match_runtime { | ||||||
14 | 0 | 0 | 0 | return 0; | |||
15 | } | ||||||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |