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   463227 use strict;
  4         20  
  4         117  
4 4     4   22 use warnings;
  4         8  
  4         89  
5 4     4   78 use 5.008001;
  4         12  
6 4     4   1697 use FFI::C::Union;
  4         12  
  4         137  
7 4     4   27 use FFI::Platypus 1.24;
  4         65  
  4         132  
8 4     4   21 use constant _is_union => 1;
  4         6  
  4         274  
9 4     4   27 use base qw( FFI::C::StructDef );
  4         9  
  4         1169  
10              
11             # ABSTRACT: Union data definition for FFI
12             our $VERSION = '0.14'; # VERSION
13              
14              
15             1;
16              
17             __END__