File Coverage

blib/arch/XS/libdwarf.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             package XS::libdwarf;
2 1     1   126739 use 5.012;
  1         4  
3              
4             our $VERSION = "20200114.6";
5              
6 1     1   523 use XS::Loader;
  1         3712  
  1         45  
7              
8             XS::Loader::load_noboot();
9              
10             =head1 NAME
11              
12             XS::libdwarf - DWARF debugging information for XS modules
13              
14             =head1 SYNOPSIS
15              
16             In your Makefile.PL
17              
18             use XS::Install;
19              
20             write_makefile(
21             ...makemaker args
22             BIN_DEPS => 'XS::libdwarf',
23             ...
24             );
25              
26             =head1 DESCRIPTION
27              
28             This module makes it possible to use L
29             from XS modules.
30              
31             No perl interface.
32              
33             =head1 SEE ALSO
34              
35             L
36              
37             =head1 AUTHOR
38              
39             Ivan Baidakou , Crazy Panda LTD
40              
41             =head1 LICENSE
42              
43             You may distribute this code under the same terms as Perl itself.
44              
45             =cut
46              
47             1;