line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package File::ChangeNotify::Event; |
2
|
|
|
|
|
|
|
|
3
|
3
|
|
|
3
|
|
336
|
use strict; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
82
|
|
4
|
3
|
|
|
3
|
|
14
|
use warnings; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
64
|
|
5
|
3
|
|
|
3
|
|
15
|
use namespace::autoclean; |
|
3
|
|
|
|
|
12
|
|
|
3
|
|
|
|
|
16
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.30'; |
8
|
|
|
|
|
|
|
|
9
|
3
|
|
|
3
|
|
1398
|
use Types::Standard qw( ArrayRef HashRef Str ); |
|
3
|
|
|
|
|
218445
|
|
|
3
|
|
|
|
|
30
|
|
10
|
3
|
|
|
3
|
|
4250
|
use Type::Utils qw( enum ); |
|
3
|
|
|
|
|
14194
|
|
|
3
|
|
|
|
|
39
|
|
11
|
|
|
|
|
|
|
|
12
|
3
|
|
|
3
|
|
1653
|
use Moo; |
|
3
|
|
|
|
|
10
|
|
|
3
|
|
|
|
|
26
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has path => ( |
15
|
|
|
|
|
|
|
is => 'ro', |
16
|
|
|
|
|
|
|
isa => Str, |
17
|
|
|
|
|
|
|
required => 1, |
18
|
|
|
|
|
|
|
); |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
has type => ( |
21
|
|
|
|
|
|
|
is => 'ro', |
22
|
|
|
|
|
|
|
isa => enum( [qw( create modify delete unknown )] ), |
23
|
|
|
|
|
|
|
required => 1, |
24
|
|
|
|
|
|
|
); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
has attributes => ( |
27
|
|
|
|
|
|
|
is => 'ro', |
28
|
|
|
|
|
|
|
isa => ArrayRef [HashRef], |
29
|
|
|
|
|
|
|
predicate => 'has_attributes', |
30
|
|
|
|
|
|
|
); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
has content => ( |
33
|
|
|
|
|
|
|
is => 'ro', |
34
|
|
|
|
|
|
|
isa => ArrayRef, |
35
|
|
|
|
|
|
|
predicate => 'has_content', |
36
|
|
|
|
|
|
|
); |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
# ABSTRACT: Class for file change events |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
__END__ |