File Coverage

blib/lib/FFI/C/UnionDef.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package FFI::C::UnionDef;
2              
3 4     4   371121 use strict;
  4         16  
  4         98  
4 4     4   49 use warnings;
  4         12  
  4         79  
5 4     4   62 use 5.008001;
  4         11  
6 4     4   1323 use FFI::C::Union;
  4         8  
  4         104  
7 4     4   24 use FFI::Platypus 1.24;
  4         64  
  4         83  
8 4     4   17 use constant _is_union => 1;
  4         7  
  4         203  
9 4     4   22 use base qw( FFI::C::StructDef );
  4         7  
  4         930  
10              
11             # ABSTRACT: Union data definition for FFI
12             our $VERSION = '0.12'; # VERSION
13              
14              
15             1;
16              
17             __END__