File Coverage

/tmp/ZoGrc4d3Ao.mite.pm
Criterion Covered Total %
statement 58 77 75.3
branch 15 34 44.1
condition 7 27 25.9
subroutine 12 13 92.3
pod n/a
total 92 151 60.9


line stmt bran cond sub pod time code
1             {
2             package MyTest;
3 1     1   12 use strict;
  1         8  
  1         67  
4 1     1   14 use warnings;
  1         3  
  1         117  
5 1     1   12 no warnings qw( once void );
  1         6  
  1         240  
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   5 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "MyTest" );
13 1         6 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 1     1   11 no warnings 'redefine';
  1         9  
  1         243  
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         19 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         58 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   28 no strict 'refs';
  1         7  
  1         921  
31 1   33 1   5 my $class = shift; $class = ref($class) || $class;
  1         7  
32 1         11 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 1 50       2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         8  
  0         0  
36 1         3 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 1 50       2 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  1         23  
  0         0  
40 1         5 map { "$_\::DEMOLISH" } @$linear_isa
  1         3  
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   2192 my $class = ref($_[0]) ? ref(shift) : shift;
51 2   66     27 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 2         7 my $self = bless {}, $class;
53 2 50       8 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 2         3 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute foo
57             # has declaration, file ../../../../tmp/ZoGrc4d3Ao, line 3
58 2 100       8 $self->{"foo"} = ( exists( $args->{"bar"} ) ? $args->{"bar"} : "99" );
59              
60              
61             # Call BUILD methods
62 2 50 33     5 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  2 50       9  
63              
64             # Unrecognized parameters
65 2 50       4 my @unknown = grep not( /\Abar\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  2         10  
  2         4  
66              
67 2         14 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 2     2   1362 my $self = shift;
80 2   33     6 my $class = ref( $self ) || $self;
81 2   33     5 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
82 2 50       7 my $in_global_destruction = defined ${^GLOBAL_PHASE}
83             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
84             : Devel::GlobalDestruction::in_global_destruction();
85 2 50       3 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  2         5  
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   8 no warnings 'misc'; # avoid (in cleanup) warnings
  1         2  
  1         519  
92 0 0       0 die $e if $e; # rethrow
93             }
94 2         15 return;
95             }
96              
97             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
98              
99             # Accessors for bar
100             # has declaration, file ../../../../tmp/ZoGrc4d3Ao, line 7
101             if ( $__XS ) {
102             Class::XSAccessor->import(
103             chained => 1,
104             "accessors" => { "bar" => "bar" },
105             );
106             }
107             else {
108             *bar = sub { @_ > 1 ? do { $_[0]{"bar"} = $_[1]; $_[0]; } : ( $_[0]{"bar"} ) };
109             }
110              
111             # Accessors for foo
112             # has declaration, file ../../../../tmp/ZoGrc4d3Ao, line 3
113             if ( $__XS ) {
114             Class::XSAccessor->import(
115             chained => 1,
116             "accessors" => { "foo" => "foo" },
117             );
118             }
119             else {
120             *foo = sub { @_ > 1 ? do { $_[0]{"foo"} = $_[1]; $_[0]; } : ( $_[0]{"foo"} ) };
121             }
122              
123              
124             # See UNIVERSAL
125             sub DOES {
126 7     7   12 my ( $self, $role ) = @_;
127 7         7 our %DOES;
128 7 50       19 return $DOES{$role} if exists $DOES{$role};
129 7 50       17 return 1 if $role eq __PACKAGE__;
130 7 50 0     13 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
131 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
132             }
133 7         37 return $self->SUPER::DOES( $role );
134             }
135              
136             # Alias for Moose/Moo-compatibility
137             sub does {
138 7     7   857 shift->DOES( @_ );
139             }
140              
141             1;
142             }