line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package SOAP::WSDL::XSD::AttributeGroup; |
2
|
1
|
|
|
1
|
|
860
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
41
|
|
3
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
48
|
|
4
|
1
|
|
|
1
|
|
1110
|
use Class::Std::Fast::Storable constructor => 'none'; |
|
1
|
|
|
|
|
27645
|
|
|
1
|
|
|
|
|
9
|
|
5
|
1
|
|
|
1
|
|
163
|
use base qw(SOAP::WSDL::Base); |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
646
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = $SOAP::WSDL::VERSION; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
#
|
10
|
|
|
|
|
|
|
# id = ID |
11
|
|
|
|
|
|
|
# name = NCName |
12
|
|
|
|
|
|
|
# ref = QName |
13
|
|
|
|
|
|
|
# {any attributes with non-schema namespace . . .}> |
14
|
|
|
|
|
|
|
# Content: (annotation?, ((attribute | attributeGroup)*, anyAttribute?)) |
15
|
|
|
|
|
|
|
# |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
# id provided by Base |
18
|
|
|
|
|
|
|
# name provided by Base |
19
|
|
|
|
|
|
|
# annotation provided by Base |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
my %ref_of :ATTR(:name[ :default<()>); ] |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
# may be defined as atomic simpleType |
24
|
|
|
|
|
|
|
my %attribute_of :ATTR(:name :default<()>); |
25
|
|
|
|
|
|
|
my %attributeGroup_of :ATTR(:name :default<()>); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |