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   464628 use strict;
  4         21  
  4         119  
4 4     4   21 use warnings;
  4         9  
  4         91  
5 4     4   77 use 5.008001;
  4         14  
6 4     4   1644 use FFI::C::Union;
  4         13  
  4         176  
7 4     4   26 use FFI::Platypus 1.24;
  4         79  
  4         106  
8 4     4   21 use constant _is_union => 1;
  4         13  
  4         240  
9 4     4   26 use base qw( FFI::C::StructDef );
  4         9  
  4         1168  
10              
11             # ABSTRACT: Union data definition for FFI
12             our $VERSION = '0.15'; # VERSION
13              
14              
15             1;
16              
17             __END__