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   1486 use Moose::Role;
  2         3  
  2         16  
4 2     2   7646 use namespace::clean -except => 'meta';
  2         3  
  2         18  
5              
6             sub _stringify_variable_name {
7 7     7   13 my ($self) = @_;
8 7         207 return $self->sigil;
9             }
10              
11             1;