File Coverage

blib/lib/Parse/Method/Signatures/Param/Unpacked/Array.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Parse::Method::Signatures::Param::Unpacked::Array;
2              
3 2     2   1657 use Moose::Role;
  2         4  
  2         15  
4 2     2   7353 use namespace::clean -except => 'meta';
  2         4  
  2         19  
5              
6             with 'Parse::Method::Signatures::Param::Unpacked';
7              
8             sub _stringify_variable_name {
9 8     8   16 my ($self) = @_;
10 8         236 return '[' . $self->_params->to_string . ']';
11             }
12              
13             1;