| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package XML::EPP::Grace::Status; |
|
3
|
|
|
|
|
|
|
|
|
4
|
1
|
|
|
1
|
|
2083
|
use Moose; |
|
|
0
|
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
use PRANG::Graph; |
|
6
|
|
|
|
|
|
|
use PRANG::XMLSchema::Types; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has_element "description" => |
|
9
|
|
|
|
|
|
|
is => "ro", |
|
10
|
|
|
|
|
|
|
isa => "PRANG::XMLSchema::normalizedString", |
|
11
|
|
|
|
|
|
|
xml_nodeName => "", |
|
12
|
|
|
|
|
|
|
; |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
has_attr "value" => |
|
15
|
|
|
|
|
|
|
is => "ro", |
|
16
|
|
|
|
|
|
|
isa => "XML::EPP::Grace::statusValueType", |
|
17
|
|
|
|
|
|
|
required => 1, |
|
18
|
|
|
|
|
|
|
xml_name => "s", # yep, "s" |
|
19
|
|
|
|
|
|
|
; |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
has_attr "lang" => |
|
22
|
|
|
|
|
|
|
is => "ro", |
|
23
|
|
|
|
|
|
|
isa => "PRANG::XMLSchema::language", |
|
24
|
|
|
|
|
|
|
default => "en", |
|
25
|
|
|
|
|
|
|
; |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
with 'XML::EPP::Grace::Node'; |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |