File Coverage

blib/lib/Sub/Call/Tail.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Sub::Call::Tail; # git description: Sub-Call-Tail-0.05-7-gfee82bd
2             # ABSTRACT: Tail calls for subroutines and methods
3              
4 4     4   82993 use strict;
  4         10  
  4         170  
5 4     4   22 use warnings;
  4         8  
  4         164  
6              
7             require 5.008001;
8 4     4   2238 use parent qw(Exporter DynaLoader);
  4         1266  
  4         23  
9 4     4   2727 use B::Hooks::OP::Check::EntersubForCV;
  4         39133  
  4         22  
10              
11             our $VERSION = '0.06';
12              
13             our @EXPORT = our @EXPORT_OK = qw(tail);
14             our %EXPORT_TAGS = ( all => \@EXPORT_OK );
15              
16             __PACKAGE__->bootstrap($VERSION);
17              
18             pop our @ISA;
19              
20             # ex: set sw=4 et:
21              
22             __PACKAGE__
23              
24             __END__