line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package XML::SRS::Query; |
3
|
|
|
|
|
|
|
BEGIN { |
4
|
1
|
|
|
1
|
|
13309
|
$XML::SRS::Query::VERSION = '0.09'; |
5
|
|
|
|
|
|
|
} |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
521
|
use Moose::Role; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
use PRANG::Graph; |
9
|
|
|
|
|
|
|
use XML::SRS::Types; |
10
|
|
|
|
|
|
|
use MooseX::Aliases; |
11
|
|
|
|
|
|
|
use MooseX::Aliases::Meta::Trait::Attribute; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has_attr 'query_id' => |
14
|
|
|
|
|
|
|
is => "rw", |
15
|
|
|
|
|
|
|
isa => "XML::SRS::UID", |
16
|
|
|
|
|
|
|
xml_name => 'QryId', |
17
|
|
|
|
|
|
|
required => 0, |
18
|
|
|
|
|
|
|
traits => [qw(Aliased)], |
19
|
|
|
|
|
|
|
alias => 'unique_id', |
20
|
|
|
|
|
|
|
; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
with 'XML::SRS::Node', "PRANG::Graph"; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |