File Coverage

blib/lib/Moose/Meta/Method/Accessor/Native/Array/clear.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 9 9 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::clear;
2             our $VERSION = '2.2203';
3              
4 3     3   1832 use strict;
  3         9  
  3         96  
5 3     3   18 use warnings;
  3         7  
  3         80  
6              
7 3     3   15 use Moose::Role;
  3         12  
  3         25  
8              
9             with 'Moose::Meta::Method::Accessor::Native::Array::Writer';
10              
11 10     10   35 sub _maximum_arguments { 0 }
12              
13 5     5   38 sub _adds_members { 0 }
14              
15 10     10   33 sub _potential_value { '[]' }
16              
17             sub _inline_optimized_set_new_value {
18 7     7   19 my $self = shift;
19 7         26 my ($inv, $new, $slot_access) = @_;
20              
21 7         37 return $slot_access . ' = [];';
22             }
23              
24 20     20   76 sub _return_value { '' }
25              
26 3     3   26 no Moose::Role;
  3         6  
  3         15  
27              
28             1;