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 7     7   47 use strict;
  7         16  
  7         193  
4 7     7   34 use warnings;
  7         14  
  7         185  
5 7     7   35 use RPerl::AfterSubclass;
  7         15  
  7         1235  
6             our $VERSION = 0.002_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 7     7   1882 use parent qw(RPerl::DataType);
  7         1846  
  7         32  
10 7     7   295 use RPerl::DataType;
  7         13  
  7         197  
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 7     7   29 use strict;
  7         15  
  7         107  
22 7     7   28 use warnings;
  7         12  
  7         160  
23 7     7   33 use parent qw(RPerl::DataType::Void);
  7         14  
  7         23  
24              
25             1; # end of class