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
|
109
|
|
|
109
|
|
43252
|
use strict; |
|
109
|
|
|
|
|
246
|
|
|
109
|
|
|
|
|
2768
|
|
6
|
109
|
|
|
109
|
|
552
|
use warnings; |
|
109
|
|
|
|
|
214
|
|
|
109
|
|
|
|
|
2409
|
|
7
|
|
|
|
|
|
|
|
8
|
109
|
|
|
109
|
|
507
|
use base 'Validation::Class::Directive'; |
|
109
|
|
|
|
|
197
|
|
|
109
|
|
|
|
|
8674
|
|
9
|
|
|
|
|
|
|
|
10
|
109
|
|
|
109
|
|
648
|
use Validation::Class::Util; |
|
109
|
|
|
|
|
227
|
|
|
109
|
|
|
|
|
613
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '7.900058'; # VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has 'mixin' => 0; |
16
|
|
|
|
|
|
|
has 'field' => 1; |
17
|
|
|
|
|
|
|
has 'multi' => 0; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |