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