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   59 use strict;
  9         21  
  9         262  
4 9     9   43 use warnings;
  9         17  
  9         278  
5 9     9   41 use RPerl::AfterSubclass;
  9         14  
  9         1369  
6             our $VERSION = 0.002_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 9     9   3571 use parent qw(RPerl::DataType);
  9         2480  
  9         48  
10 9     9   299 use RPerl::DataType;
  9         18  
  9         239  
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   43 use strict;
  9         17  
  9         141  
22 9     9   40 use warnings;
  9         17  
  9         200  
23 9     9   42 use parent qw(RPerl::DataType::Void);
  9         17  
  9         31  
24              
25             1; # end of class