File Coverage

blib/lib/RPerl/DataType/Void.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2             package RPerl::DataType::Void;
3 9     9   88 use strict;
  9         19  
  9         255  
4 9     9   44 use warnings;
  9         18  
  9         277  
5 9     9   51 use RPerl::AfterSubclass;
  9         18  
  9         1276  
6             our $VERSION = 0.002_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 9     9   3734 use parent qw(RPerl::DataType);
  9         2257  
  9         48  
10 9     9   302 use RPerl::DataType;
  9         21  
  9         235  
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             ## no critic qw(Capitalization ProhibitMultiplePackages ProhibitReusedNames) # SYSTEM DEFAULT 3: allow multiple & lower case package names
16              
17             # [[[ SUB-TYPES ]]]
18             # void means no type, void does NOT mean unknown data type, that is RPerl::DataType::Unknown
19             package # hide from PAUSE indexing
20             void;
21 9     9   41 use strict;
  9         21  
  9         146  
22 9     9   42 use warnings;
  9         19  
  9         211  
23 9     9   41 use parent qw(RPerl::DataType::Void);
  9         18  
  9         30  
24              
25             1; # end of class