File Coverage

/tmp/GOSym66D9x.mite.pm
Criterion Covered Total %
statement 72 88 81.8
branch 18 40 45.0
condition 9 27 33.3
subroutine 15 15 100.0
pod n/a
total 114 170 67.0


line stmt bran cond sub pod time code
1             {
2             package TestClass2;
3 1     1   6 use strict;
  1         3  
  1         32  
4 1     1   6 use warnings;
  1         2  
  1         29  
5 1     1   7 no warnings qw( once void );
  1         2  
  1         184  
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", "TestClass2" );
13 1         2 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   8 no warnings 'redefine';
  1         1  
  1         288  
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 0         0 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         47 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   10 no strict 'refs';
  1         2  
  1         226  
31 1   33 1   1 my $class = shift; $class = ref($class) || $class;
  1         5  
32 1         5 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 3 100       3 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  3         12  
  1         3  
36 3         8 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 3 50       4 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  3         24  
  0         0  
40 1         2 map { "$_\::DEMOLISH" } @$linear_isa
  3         5  
41             ],
42             HAS_BUILDARGS => $class->can('BUILDARGS'),
43             HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
44             };
45             }
46              
47             BEGIN {
48 1     1   640 require TestClass1;
49            
50 1     1   7 use mro 'c3';
  1         2  
  1         13  
51 1         288 our @ISA;
52 1         504 push @ISA, "TestClass1";
53             }
54              
55             # Standard Moose/Moo-style constructor
56             sub new {
57 2 50   2   3240 my $class = ref($_[0]) ? ref(shift) : shift;
58 2   66     10 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
59 2 0       3 my $self = do { my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ }; $args->{__no_BUILD__} = 1; $class->SUPER::new( $args ) };
  2 50       9  
  0         0  
  2         29  
  2         6  
60 2 0       49 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
61 2         22 my $no_build = delete $args->{__no_BUILD__};
62              
63              
64              
65             # Call BUILD methods
66 2 50 66     10 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  1 100       6  
67              
68             # Unrecognized parameters
69 2 50       10 my @unknown = grep not( do { package TestClass2::__SAFE_NAMESPACE__; defined($_) and do { ref(\$_) eq 'SCALAR' or ref(\(my $val = $_)) eq 'SCALAR' } } ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  2 50       8  
  2 50       12  
  2         5  
  2         5  
70              
71 2         6 return $self;
72             }
73              
74             # Used by constructor to call BUILD methods
75             sub BUILDALL {
76 1     1   14 my $class = ref( $_[0] );
77 1   33     4 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
78 1 50       2 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  1         7  
79             }
80              
81             # Destructor should call DEMOLISH methods
82             sub DESTROY {
83 2     2   662 my $self = shift;
84 2   33     6 my $class = ref( $self ) || $self;
85 2   33     8 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 2 50       8 my $in_global_destruction = defined ${^GLOBAL_PHASE}
87             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
88             : Devel::GlobalDestruction::in_global_destruction();
89 2 50       3 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  2         6  
90 0         0 my $e = do {
91 0         0 local ( $?, $@ );
92 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
93 0         0 $@;
94             };
95 1     1   8 no warnings 'misc'; # avoid (in cleanup) warnings
  1         2  
  1         250  
96 0 0       0 die $e if $e; # rethrow
97             }
98 2         31 return;
99             }
100              
101              
102             # See UNIVERSAL
103             sub DOES {
104 7     7   11 my ( $self, $role ) = @_;
105 7         7 our %DOES;
106 7 50       13 return $DOES{$role} if exists $DOES{$role};
107 7 50       12 return 1 if $role eq __PACKAGE__;
108 7 50 0     13 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
109 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
110             }
111 7         41 return $self->SUPER::DOES( $role );
112             }
113              
114             # Alias for Moose/Moo-compatibility
115             sub does {
116 7     7   2063 shift->DOES( @_ );
117             }
118              
119             1;
120             }