File Coverage

/tmp/6SeDljibBF.mite.pm
Criterion Covered Total %
statement 113 158 71.5
branch 20 64 31.2
condition 8 51 15.6
subroutine 30 32 93.7
pod n/a
total 171 305 56.0


line stmt bran cond sub pod time code
1             {
2             use strict;
3 1     1   5 use warnings;
  1         1  
  1         26  
4 1     1   5 no warnings qw( once void );
  1         2  
  1         24  
5 1     1   4  
  1         2  
  1         149  
6             our $USES_MITE = "Mite::Class";
7             our $MITE_SHIM = "Mite::Shim";
8             our $MITE_VERSION = "0.010008";
9             # Mite keywords
10             BEGIN {
11             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "GP1" );
12 1     1   3 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
13 1         2 no warnings 'redefine';
14             (
15 1     1   6 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  1         9  
  1         162  
16             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
17 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
18 0         0 sub {},
19 0         0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
20             sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
21 1         14 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
22 0         0 );
23 0         0 };
24 1         44  
25             # Gather metadata for constructor and destructor
26             no strict 'refs';
27             my $class = shift; $class = ref($class) || $class;
28             my $linear_isa = mro::get_linear_isa( $class );
29             return {
30 1     1   5 BUILD => [
  1         2  
  1         533  
31 1   33 1   2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         4  
32 1         4 map { "$_\::BUILD" } reverse @$linear_isa
33             ],
34             DEMOLISH => [
35 3 50       14 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  3         12  
  0         0  
36 3         5 map { "$_\::DEMOLISH" } @$linear_isa
37             ],
38             HAS_BUILDARGS => $class->can('BUILDARGS'),
39 3 50       3 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  3         22  
  0         0  
40 1         2 };
  3         5  
41             }
42              
43              
44             # Standard Moose/Moo-style constructor
45             my $class = ref($_[0]) ? ref(shift) : shift;
46             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
47             my $self = bless {}, $class;
48             my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
49             my $no_build = delete $args->{__no_BUILD__};
50 0 0   0   0  
51 0   0     0 # Attribute foo
52 0         0 # has declaration, file ../../../../tmp/6SeDljibBF, line 3
53 0 0       0 $self->{"foo"} = ( exists( $args->{"foo"} ) ? $args->{"foo"} : "23" );
  0 0       0  
54 0         0  
55              
56             # Call BUILD methods
57             $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
58 0 0       0  
59             # Unrecognized parameters
60             my @unknown = grep not( /\Afoo\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
61              
62 0 0 0     0 return $self;
  0 0       0  
63             }
64              
65 0 0       0 # Used by constructor to call BUILD methods
  0         0  
  0         0  
66             my $class = ref( $_[0] );
67 0         0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
68             $_->( @_ ) for @{ $meta->{BUILD} || [] };
69             }
70              
71             # Destructor should call DEMOLISH methods
72 0     0   0 my $self = shift;
73 0   0     0 my $class = ref( $self ) || $self;
74 0 0       0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
  0         0  
75             my $in_global_destruction = defined ${^GLOBAL_PHASE}
76             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
77             : Devel::GlobalDestruction::in_global_destruction();
78             for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
79 1     1   2890 my $e = do {
80 1   33     5 local ( $?, $@ );
81 1   33     3 eval { $demolisher->( $self, $in_global_destruction ) };
82 1 50       4 $@;
83             };
84             no warnings 'misc'; # avoid (in cleanup) warnings
85 1 50       2 die $e if $e; # rethrow
  1         3  
86 0         0 }
87 0         0 return;
88 0         0 }
  0         0  
89 0         0  
90             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
91 1     1   12  
  1         2  
  1         348  
92 0 0       0 # Accessors for foo
93             # has declaration, file ../../../../tmp/6SeDljibBF, line 3
94 1         10 if ( $__XS ) {
95             Class::XSAccessor->import(
96             chained => 1,
97             "getters" => { "foo" => "foo" },
98             );
99             }
100             else {
101             *foo = sub { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]{"foo"} };
102             }
103              
104              
105             # See UNIVERSAL
106             my ( $self, $role ) = @_;
107             our %DOES;
108             return $DOES{$role} if exists $DOES{$role};
109             return 1 if $role eq __PACKAGE__;
110             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
111             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
112             }
113             return $self->SUPER::DOES( $role );
114 21     21   22 }
115 21         18  
116 21 50       27 # Alias for Moose/Moo-compatibility
117 21 50       24 shift->DOES( @_ );
118 21 50 0     28 }
      33        
119 0 0 0     0  
120             1;
121 21         83 use strict;
122             use warnings;
123             no warnings qw( once void );
124              
125             our $USES_MITE = "Mite::Class";
126 7     7   1658 our $MITE_SHIM = "Mite::Shim";
127             our $MITE_VERSION = "0.010008";
128             # Mite keywords
129             BEGIN {
130             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "P1" );
131             ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
132 1     1   6 no warnings 'redefine';
  1         2  
  1         18  
133 1     1   4 (
  1         1  
  1         31  
134 1     1   6 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  1         1  
  1         93  
135             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
136             sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
137             sub {},
138             sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
139             sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
140             sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
141 1     1   4 );
142 1         1 };
143              
144 1     1   7  
  1         1  
  1         160  
145             BEGIN {
146 0         0
147 0         0
148 0         0 use mro 'c3';
149             our @ISA;
150 0         0 push @ISA, "GP1";
151 0         0 }
152 0         0  
153 1         45  
154             # See UNIVERSAL
155             my ( $self, $role ) = @_;
156             our %DOES;
157             return $DOES{$role} if exists $DOES{$role};
158             return 1 if $role eq __PACKAGE__;
159             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
160             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
161 1     1   6 }
  1         1  
  1         12  
162 1     1   47 return $self->SUPER::DOES( $role );
163 1         175 }
164              
165             # Alias for Moose/Moo-compatibility
166             shift->DOES( @_ );
167             }
168              
169 14     14   15 1;
170 14         12 use strict;
171 14 50       18 use warnings;
172 14 50       16 no warnings qw( once void );
173 14 50 0     19  
      33        
174 0 0 0     0 our $USES_MITE = "Mite::Class";
175             our $MITE_SHIM = "Mite::Shim";
176 14         18 our $MITE_VERSION = "0.010008";
177             # Mite keywords
178             BEGIN {
179             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "C1" );
180             ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
181 7     7   501 no warnings 'redefine';
182             (
183             sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
184             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
185             sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
186             sub {},
187 1     1   6 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
  1         1  
  1         24  
188 1     1   5 sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
  1         1  
  1         27  
189 1     1   4 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
  1         2  
  1         118  
190             );
191             };
192              
193              
194             BEGIN {
195            
196 1     1   4
197 1         1 use mro 'c3';
198             our @ISA;
199 1     1   21 push @ISA, "P1";
  1         2  
  1         173  
200             }
201 0         0  
202 0         0 # Standard Moose/Moo-style constructor
203 0         0 my $class = ref($_[0]) ? ref(shift) : shift;
204             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
205 1         4 my $self = bless {}, $class;
206 0         0 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
207 0         0 my $no_build = delete $args->{__no_BUILD__};
208 1         38  
209             # Attribute foo
210             # has declaration, file ../../../../tmp/6SeDljibBF, line 14
211             $self->{"foo"} = ( exists( $args->{"foo"} ) ? $args->{"foo"} : "child default" );
212              
213              
214             # Call BUILD methods
215             $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
216 1     1   5  
  1         2  
  1         4  
217 1     1   28 # Unrecognized parameters
218 1         431 my @unknown = grep not( /\Afoo\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
219              
220             return $self;
221             }
222              
223 1 50   1   162 my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
224 1   33     9  
225 1         3 # Accessors for foo
226 1 50       3 # has declaration, file ../../../../tmp/6SeDljibBF, line 14
  0 50       0  
227 1         2 if ( $__XS ) {
228             Class::XSAccessor->import(
229             chained => 1,
230             "getters" => { "foo" => "foo" },
231 1 50       6 );
232             }
233             else {
234             *foo = sub { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]{"foo"} };
235 1 50 33     3 }
  1 50       17  
236              
237              
238 1 50       2 # See UNIVERSAL
  1         3  
  1         3  
239             my ( $self, $role ) = @_;
240 1         8 our %DOES;
241             return $DOES{$role} if exists $DOES{$role};
242             return 1 if $role eq __PACKAGE__;
243             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
244             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
245             }
246             return $self->SUPER::DOES( $role );
247             }
248              
249             # Alias for Moose/Moo-compatibility
250             shift->DOES( @_ );
251             }
252              
253             1;