File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Array/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::Array::shallow_clone;
2             our $VERSION = '2.2203';
3              
4 2     2   1163 use strict;
  2         5  
  2         66  
5 2     2   10 use warnings;
  2         4  
  2         52  
6              
7 2     2   11 use Params::Util ();
  2         3  
  2         43  
8              
9 2     2   14 use Moose::Role;
  2         3  
  2         15  
10              
11             with 'Moose::Meta::Method::Accessor::Native::Reader';
12              
13 3     3   12 sub _minimum_arguments { 0 }
14              
15 3     3   12 sub _maximum_arguments { 0 }
16              
17             sub _return_value {
18 3     3   13 my $self = shift;
19 3         15 my ($slot_access) = @_;
20              
21 3         31 return '[ @{ (' . $slot_access . ') } ]';
22             }
23              
24 2     2   17 no Moose::Role;
  2         4  
  2         10  
25              
26             1;