line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Data::Hopen::G::Op - An individual operation |
2
|
|
|
|
|
|
|
package Data::Hopen::G::Op; |
3
|
11
|
|
|
11
|
|
5796
|
use Data::Hopen; |
|
11
|
|
|
|
|
29
|
|
|
11
|
|
|
|
|
743
|
|
4
|
11
|
|
|
11
|
|
75
|
use strict; |
|
11
|
|
|
|
|
20
|
|
|
11
|
|
|
|
|
220
|
|
5
|
11
|
|
|
11
|
|
51
|
use Data::Hopen::Base; |
|
11
|
|
|
|
|
22
|
|
|
11
|
|
|
|
|
59
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.000018'; |
8
|
|
|
|
|
|
|
|
9
|
11
|
|
|
11
|
|
2532
|
use parent 'Data::Hopen::G::Node'; |
|
11
|
|
|
|
|
29
|
|
|
11
|
|
|
|
|
74
|
|
10
|
11
|
|
|
11
|
|
524
|
use Class::Tiny; |
|
11
|
|
|
|
|
24
|
|
|
11
|
|
|
|
|
40
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Data::Hopen::G::Op - a hopen operation |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 SYNOPSIS |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
An C represents one step in the build process. Cs exist to provide |
19
|
|
|
|
|
|
|
a place for edges (L) to connect to. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
__END__ |