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.2205';
3              
4 2     2   1462 use strict;
  2         6  
  2         72  
5 2     2   12 use warnings;
  2         5  
  2         71  
6              
7 2     2   18 use Params::Util ();
  2         7  
  2         29  
8              
9 2     2   14 use Moose::Role;
  2         11  
  2         21  
10              
11             with 'Moose::Meta::Method::Accessor::Native::Reader';
12              
13 3     3   22 sub _minimum_arguments { 0 }
14              
15 3     3   10 sub _maximum_arguments { 0 }
16              
17             sub _return_value {
18 3     3   7 my $self = shift;
19 3         10 my ($slot_access) = @_;
20              
21 3         48 return '[ @{ (' . $slot_access . ') } ]';
22             }
23              
24 2     2   17 no Moose::Role;
  2         11  
  2         12  
25              
26             1;