line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package OpenTracing::Common; |
2
|
|
|
|
|
|
|
|
3
|
4
|
|
|
4
|
|
1377
|
use strict; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
107
|
|
4
|
4
|
|
|
4
|
|
17
|
use warnings; |
|
4
|
|
|
|
|
5
|
|
|
4
|
|
|
|
|
162
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION = '1.003'; # VERSION |
7
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:TEAM'; # AUTHORITY |
8
|
|
|
|
|
|
|
|
9
|
4
|
|
|
4
|
|
415
|
no indirect; |
|
4
|
|
|
|
|
1014
|
|
|
4
|
|
|
|
|
41
|
|
10
|
4
|
|
|
4
|
|
669
|
use utf8; |
|
4
|
|
|
|
|
18
|
|
|
4
|
|
|
|
|
16
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=encoding utf8 |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
OpenTracing::Common - provides common logic between OpenTracing classes |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 DESCRIPTION |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
No user-serviceable parts inside. Currently just provides a standard constructor. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=cut |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
sub new { |
25
|
5
|
|
|
5
|
0
|
24732
|
my ($class, %args) = @_; |
26
|
5
|
|
|
|
|
49
|
bless \%args, $class |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
1; |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
__END__ |