line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# [[[ HEADER ]]] |
2
|
|
|
|
|
|
|
package RPerl::Operation::Expression::Operator::String; |
3
|
5
|
|
|
5
|
|
1955
|
use strict; |
|
5
|
|
|
|
|
13
|
|
|
5
|
|
|
|
|
127
|
|
4
|
5
|
|
|
5
|
|
20
|
use warnings; |
|
5
|
|
|
|
|
15
|
|
|
5
|
|
|
|
|
105
|
|
5
|
5
|
|
|
5
|
|
25
|
use RPerl::AfterSubclass; |
|
5
|
|
|
|
|
11
|
|
|
5
|
|
|
|
|
612
|
|
6
|
|
|
|
|
|
|
our $VERSION = 0.001_000; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
# [[[ OO INHERITANCE ]]] |
9
|
5
|
|
|
5
|
|
34
|
use parent qw(RPerl::Operation::Expression::Operator); |
|
5
|
|
|
|
|
328
|
|
|
5
|
|
|
|
|
36
|
|
10
|
5
|
|
|
5
|
|
285
|
use RPerl::Operation::Expression::Operator; |
|
5
|
|
|
|
|
12
|
|
|
5
|
|
|
|
|
186
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
# [[[ CRITICS ]]] |
13
|
|
|
|
|
|
|
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator |
14
|
|
|
|
|
|
|
## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
# [[[ OO PROPERTIES ]]] |
17
|
|
|
|
|
|
|
our hashref $properties = {}; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; # end of class |