File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Code/execute_method.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_method;
2             our $VERSION = '2.2206';
3              
4 2     2   1254 use strict;
  2         5  
  2         67  
5 2     2   10 use warnings;
  2         4  
  2         53  
6              
7 2     2   14 use Moose::Role;
  2         5  
  2         24  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Reader';
10              
11             sub _return_value {
12 4     4   24 my $self = shift;
13 4         21 my ($slot_access) = @_;
14              
15 4         50 return $slot_access . '->($self, @_)';
16             }
17              
18 2     2   27 no Moose::Role;
  2         26  
  2         18  
19              
20             1;