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
|
|
52566
|
use strict; |
|
109
|
|
|
|
|
378
|
|
|
109
|
|
|
|
|
3345
|
|
6
|
109
|
|
|
109
|
|
656
|
use warnings; |
|
109
|
|
|
|
|
264
|
|
|
109
|
|
|
|
|
2979
|
|
7
|
|
|
|
|
|
|
|
8
|
109
|
|
|
109
|
|
615
|
use base 'Validation::Class::Directive'; |
|
109
|
|
|
|
|
285
|
|
|
109
|
|
|
|
|
10243
|
|
9
|
|
|
|
|
|
|
|
10
|
109
|
|
|
109
|
|
824
|
use Validation::Class::Util; |
|
109
|
|
|
|
|
333
|
|
|
109
|
|
|
|
|
792
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '7.900059'; # VERSION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
has 'mixin' => 0; |
16
|
|
|
|
|
|
|
has 'field' => 1; |
17
|
|
|
|
|
|
|
has 'multi' => 0; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |