line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# ABSTRACT: Errors Directive for Validation Class Field Definitions |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Validation::Class::Directive::Errors; |
4
|
|
|
|
|
|
|
|
5
|
108
|
|
|
108
|
|
67978
|
use strict; |
|
108
|
|
|
|
|
209
|
|
|
108
|
|
|
|
|
2872
|
|
6
|
108
|
|
|
108
|
|
536
|
use warnings; |
|
108
|
|
|
|
|
207
|
|
|
108
|
|
|
|
|
2877
|
|
7
|
|
|
|
|
|
|
|
8
|
108
|
|
|
108
|
|
529
|
use base 'Validation::Class::Directive'; |
|
108
|
|
|
|
|
195
|
|
|
108
|
|
|
|
|
7724
|
|
9
|
|
|
|
|
|
|
|
10
|
108
|
|
|
108
|
|
563
|
use Validation::Class::Util; |
|
108
|
|
|
|
|
207
|
|
|
108
|
|
|
|
|
713
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '7.900057'; # VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has 'mixin' => 0; |
16
|
|
|
|
|
|
|
has 'field' => 1; |
17
|
|
|
|
|
|
|
has 'multi' => 0; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |