File Coverage

blib/lib/Return/Deep.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Return::Deep;
2              
3 1     1   69974 use 5.008;
  1         4  
4 1     1   5 use strict;
  1         2  
  1         19  
5 1     1   5 use warnings;
  1         1  
  1         221  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our %EXPORT_TAGS = (all => [ qw(deep_ret sym_ret ret_bound) ]);
12             our @EXPORT_OK = @{$EXPORT_TAGS{all}};
13             our @EXPORT = @{$EXPORT_TAGS{all}};
14              
15             our $VERSION = '1.003';
16              
17             require XSLoader;
18             XSLoader::load('Return::Deep', $VERSION);
19              
20             sub ret_bound(&;$) {
21 28     28 1 6657 my($act, $symbol) = @_;
22 28         61 my $guard = add_bound($act, $symbol);
23 28         53 $act->();
24             }
25              
26             1;
27             __END__