File Coverage

blib/lib/Parse/Method/Signatures/Param/Placeholder.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::Placeholder;
2              
3 2     2   1523 use Moose::Role;
  2         3  
  2         14  
4 2     2   7452 use namespace::clean -except => 'meta';
  2         3  
  2         17  
5              
6             sub _stringify_variable_name {
7 7     7   12 my ($self) = @_;
8 7         209 return $self->sigil;
9             }
10              
11             1;