File Coverage

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