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
|
|
6147
|
use Data::Hopen; |
|
11
|
|
|
|
|
24
|
|
|
11
|
|
|
|
|
686
|
|
4
|
11
|
|
|
11
|
|
66
|
use strict; |
|
11
|
|
|
|
|
20
|
|
|
11
|
|
|
|
|
234
|
|
5
|
11
|
|
|
11
|
|
52
|
use Data::Hopen::Base; |
|
11
|
|
|
|
|
22
|
|
|
11
|
|
|
|
|
61
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.000017'; |
8
|
|
|
|
|
|
|
|
9
|
11
|
|
|
11
|
|
2557
|
use parent 'Data::Hopen::G::Node'; |
|
11
|
|
|
|
|
25
|
|
|
11
|
|
|
|
|
73
|
|
10
|
11
|
|
|
11
|
|
556
|
use Class::Tiny; |
|
11
|
|
|
|
|
23
|
|
|
11
|
|
|
|
|
42
|
|
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__ |