File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::Hash::shallow_clone;
2             our $VERSION = '2.2203';
3              
4 2     2   1085 use strict;
  2         6  
  2         60  
5 2     2   10 use warnings;
  2         4  
  2         56  
6              
7 2     2   10 use Params::Util ();
  2         5  
  2         28  
8              
9 2     2   8 use Moose::Role;
  2         4  
  2         31  
10              
11             with 'Moose::Meta::Method::Accessor::Native::Reader';
12              
13 3     3   10 sub _minimum_arguments { 0 }
14              
15 3     3   11 sub _maximum_arguments { 0 }
16              
17             sub _return_value {
18 3     3   8 my $self = shift;
19 3         7 my ($slot_access) = @_;
20              
21 3         28 return '{ %{ (' . $slot_access . ') } }';
22             }
23              
24 2     2   21 no Moose::Role;
  2         6  
  2         10  
25              
26             1;