line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# [[[ PREPROCESSOR ]]] |
2
|
|
|
|
|
|
|
# <<< GENERATE_ERROR: 'ERROR ECOGEAS' >>> |
3
|
|
|
|
|
|
|
# <<< GENERATE_ERROR: 'Perl API name conflict' >>> |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# [[[ HEADER ]]] |
6
|
1
|
|
|
1
|
|
9
|
use RPerl; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
7
|
|
|
|
|
|
|
package RPerl::Test::PerlAPINames::Class_03_Bad_01; |
8
|
|
|
|
|
|
|
use strict; |
9
|
1
|
|
|
1
|
|
54
|
use warnings; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
22
|
|
10
|
1
|
|
|
1
|
|
7
|
our $VERSION = 0.001_000; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
174
|
|
11
|
|
|
|
|
|
|
|
12
|
1
|
|
|
1
|
|
8
|
# [[[ OO INHERITANCE ]]] |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
114
|
|
13
|
|
|
|
|
|
|
use parent qw(RPerl::CompileUnit::Module::Class); |
14
|
|
|
|
|
|
|
use RPerl::CompileUnit::Module::Class; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# [[[ CRITICS ]]] |
17
|
1
|
|
|
1
|
|
9
|
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
45
|
|
18
|
1
|
|
|
1
|
|
6
|
## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
# [[[ OO PROPERTIES ]]] |
21
|
1
|
|
|
1
|
|
69
|
our hashref $properties = {}; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
9
|
|
22
|
1
|
|
|
1
|
|
10
|
|
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
5
|
|
23
|
|
|
|
|
|
|
# [[[ SUBROUTINES & OO METHODS ]]] |
24
|
|
|
|
|
|
|
|
25
|
1
|
|
|
1
|
|
57
|
sub fp_dup { |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
26
|
|
26
|
1
|
|
|
1
|
|
6
|
{ my void $RETURN_TYPE }; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
27
|
|
|
|
|
|
|
return; |
28
|
|
|
|
|
|
|
} |
29
|
1
|
|
|
1
|
|
50
|
|
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
30
|
1
|
|
|
1
|
|
10
|
1; # end of class |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|