File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Code/execute.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Code::execute;
2             our $VERSION = '2.2203';
3              
4 2     2   1235 use strict;
  2         6  
  2         64  
5 2     2   16 use warnings;
  2         4  
  2         58  
6              
7 2     2   70 use Moose::Role;
  2         5  
  2         19  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11             sub _return_value {
12 7     7   21 my $self = shift;
13 7         15 my ($slot_access) = @_;
14              
15 7         71 return $slot_access . '->(@_)';
16             }
17              
18 2     2   14 no Moose::Role;
  2         5  
  2         8  
19              
20             1;