line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Config::HAProxy::Node::Comment; |
2
|
3
|
|
|
3
|
|
18
|
use parent 'Config::HAProxy::Node'; |
|
3
|
|
|
|
|
13
|
|
|
3
|
|
|
|
|
16
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
=head1 NAME |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
Config::HAProxy::Node::Comment - comment node in HAProxy configuration |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 DESCRIPTION |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Objects of this class represent comments in HAProxy configuration file. |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 METHODS |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head2 is_comment |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Returns true. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 orig |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Returns original line as it appeared in the configuration file. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 locus |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Returns the location of this statement in the configuration file (the |
25
|
|
|
|
|
|
|
B object). |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 SEE ALSO |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
B, B. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=cut |
32
|
|
|
|
|
|
|
|
33
|
3
|
|
|
3
|
1
|
6
|
sub is_comment { 1 } |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|