File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/String/clear.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method::Accessor::Native::String::clear;
2             our $VERSION = '2.2205';
3              
4 2     2   1160 use strict;
  2         5  
  2         68  
5 2     2   14 use warnings;
  2         5  
  2         49  
6              
7 2     2   11 use Moose::Role;
  2         5  
  2         14  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Writer';
10              
11 7     7   26 sub _maximum_arguments { 0 }
12              
13 7     7   35 sub _potential_value { '""' }
14              
15             sub _inline_optimized_set_new_value {
16 3     3   10 my $self = shift;
17 3         13 my ($inv, $new, $slot_access) = @_;
18              
19 3         23 return $slot_access . ' = "";';
20             }
21              
22 2     2   17 no Moose::Role;
  2         5  
  2         12  
23              
24             1;