File Coverage

/tmp/3ywj8oNL4R.mite.pm
Criterion Covered Total %
statement 62 81 76.5
branch 16 38 42.1
condition 6 27 22.2
subroutine 13 14 92.8
pod n/a
total 97 160 60.6


line stmt bran cond sub pod time code
1             {
2             package MyTest3;
3 2     2   48 use strict;
  2         22  
  2         228  
4 2     2   38 use warnings;
  2         32  
  2         234  
5 2     2   34 no warnings qw( once void );
  2         28  
  2         788  
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 2     2   28 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest3" );
13 2         22 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 2     2   20 no warnings 'redefine';
  2         16  
  2         796  
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 2         30 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 2         118 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 2     2   22 no strict 'refs';
  2         32  
  2         2448  
31 2   33 2   16 my $class = shift; $class = ref($class) || $class;
  2         14  
32 2         36 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 2 50       4 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  2         24  
  0         0  
36 2         10 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 2 50       4 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  2         72  
  0         0  
40 2         6 map { "$_\::DEMOLISH" } @$linear_isa
  2         20  
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 2 50   2   458 my $class = ref($_[0]) ? ref(shift) : shift;
51 2   33     96 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 2         12 my $self = bless {}, $class;
53 2 50       14 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 2         6 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute foo
57             # has declaration, file ../../../../tmp/3ywj8oNL4R, line 4
58 2 50       12 $args->{"foo"} = $self->cloner_for_foo( "foo", $args->{"foo"} ) if exists( $args->{"foo"} );
59 2 50       16 if ( exists $args->{"foo"} ) { $self->{"foo"} = $args->{"foo"}; } ;
  2         16  
60              
61              
62             # Call BUILD methods
63 2 50 33     8 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  2 50       30  
64              
65             # Unrecognized parameters
66 2 50       8 my @unknown = grep not( /\Afoo\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  2         20  
  2         12  
67              
68 2         12 return $self;
69             }
70              
71             # Used by constructor to call BUILD methods
72             sub BUILDALL {
73 0     0   0 my $class = ref( $_[0] );
74 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
75 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
76             }
77              
78             # Destructor should call DEMOLISH methods
79             sub DESTROY {
80 2     2   6394 my $self = shift;
81 2   33     12 my $class = ref( $self ) || $self;
82 2   33     20 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
83 2 50       12 my $in_global_destruction = defined ${^GLOBAL_PHASE}
84             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
85             : Devel::GlobalDestruction::in_global_destruction();
86 2 50       4 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  2         26  
87 0         0 my $e = do {
88 0         0 local ( $?, $@ );
89 0         0 eval { $demolisher->( $self, $in_global_destruction ) };
  0         0  
90 0         0 $@;
91             };
92 2     2   32 no warnings 'misc'; # avoid (in cleanup) warnings
  2         16  
  2         1080  
93 0 0       0 die $e if $e; # rethrow
94             }
95 2         18 return;
96             }
97              
98             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
99              
100             # Accessors for foo
101             # has declaration, file ../../../../tmp/3ywj8oNL4R, line 4
102 2 50   2   18 sub foo { @_ == 1 or Mite::Shim::croak( 'Reader "foo" usage: $self->foo()' ); $_[0]->cloner_for_foo( "foo", $_[0]{"foo"} ) }
  2         10  
103              
104              
105             # See UNIVERSAL
106             sub DOES {
107 14     14   34 my ( $self, $role ) = @_;
108 14         16 our %DOES;
109 14 50       50 return $DOES{$role} if exists $DOES{$role};
110 14 50       24 return 1 if $role eq __PACKAGE__;
111 14 50 0     56 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
112 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
113             }
114 14         152 return $self->SUPER::DOES( $role );
115             }
116              
117             # Alias for Moose/Moo-compatibility
118             sub does {
119 14     14   1810 shift->DOES( @_ );
120             }
121              
122             1;
123             }