| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package WWW::Google::Contacts::Type::Birthday; |
|
2
|
|
|
|
|
|
|
{ |
|
3
|
|
|
|
|
|
|
$WWW::Google::Contacts::Type::Birthday::VERSION = '0.39'; |
|
4
|
|
|
|
|
|
|
} |
|
5
|
|
|
|
|
|
|
|
|
6
|
19
|
|
|
19
|
|
111
|
use Moose; |
|
|
19
|
|
|
|
|
42
|
|
|
|
19
|
|
|
|
|
218
|
|
|
7
|
19
|
|
|
19
|
|
128506
|
use MooseX::Types::Moose qw( Str ); |
|
|
19
|
|
|
|
|
47
|
|
|
|
19
|
|
|
|
|
246
|
|
|
8
|
19
|
|
|
19
|
|
99322
|
use WWW::Google::Contacts::Meta::Attribute::Trait::XmlField; |
|
|
19
|
|
|
|
|
51
|
|
|
|
19
|
|
|
|
|
1337
|
|
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
extends 'WWW::Google::Contacts::Type::Base'; |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has when => ( |
|
13
|
|
|
|
|
|
|
isa => Str, |
|
14
|
|
|
|
|
|
|
is => 'rw', |
|
15
|
|
|
|
|
|
|
traits => ['XmlField'], |
|
16
|
|
|
|
|
|
|
xml_key => 'when', |
|
17
|
|
|
|
|
|
|
predicate => 'has_when', |
|
18
|
|
|
|
|
|
|
); |
|
19
|
|
|
|
|
|
|
|
|
20
|
19
|
|
|
19
|
|
105
|
no Moose; |
|
|
19
|
|
|
|
|
41
|
|
|
|
19
|
|
|
|
|
120
|
|
|
21
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
|
22
|
|
|
|
|
|
|
1; |
|
23
|
|
|
|
|
|
|
__END__ |