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
|
|
6091
|
use Data::Hopen; |
|
11
|
|
|
|
|
26
|
|
|
11
|
|
|
|
|
662
|
|
4
|
11
|
|
|
11
|
|
68
|
use strict; |
|
11
|
|
|
|
|
21
|
|
|
11
|
|
|
|
|
226
|
|
5
|
11
|
|
|
11
|
|
51
|
use Data::Hopen::Base; |
|
11
|
|
|
|
|
67
|
|
|
11
|
|
|
|
|
63
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.000019'; |
8
|
|
|
|
|
|
|
|
9
|
11
|
|
|
11
|
|
2511
|
use parent 'Data::Hopen::G::Node'; |
|
11
|
|
|
|
|
26
|
|
|
11
|
|
|
|
|
80
|
|
10
|
11
|
|
|
11
|
|
542
|
use Class::Tiny; |
|
11
|
|
|
|
|
25
|
|
|
11
|
|
|
|
|
59
|
|
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__ |