File Coverage

/tmp/zuIHh3rxhO.mite.pm
Criterion Covered Total %
statement 64 84 76.1
branch 16 38 42.1
condition 7 27 25.9
subroutine 14 15 93.3
pod n/a
total 101 164 61.5


line stmt bran cond sub pod time code
1             {
2             package My::Deparse;
3 1     1   10 use strict;
  1         2  
  1         30  
4 1     1   5 use warnings;
  1         2  
  1         28  
5 1     1   5 no warnings qw( once void );
  1         1  
  1         164  
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", "My::Deparse" );
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         228  
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         55 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 1     1   6 no strict 'refs';
  1         2  
  1         228  
31 1   33 1   2 my $class = shift; $class = ref($class) || $class;
  1         4  
32 1         5 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 2 50       5 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  2         44  
  0         0  
36 2         6 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 2 50       3 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  2         20  
  0         0  
40 1         3 map { "$_\::DEMOLISH" } @$linear_isa
  2         4  
41             ],
42             HAS_BUILDARGS => $class->can('BUILDARGS'),
43             HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
44             };
45             }
46              
47             BEGIN {
48 1     1   50 require B::Deparse;
49            
50 1     1   18 use mro 'c3';
  1         3  
  1         16  
51 1         1 our @ISA;
52 1         478 push @ISA, "B::Deparse";
53             }
54              
55             # Standard Moose/Moo-style constructor
56             sub new {
57 2 50   2   226 my $class = ref($_[0]) ? ref(shift) : shift;
58 2   66     25 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
59 2 50       18 my $self = $class->SUPER::new( $meta->{HAS_FOREIGNBUILDARGS} ? $class->FOREIGNBUILDARGS( @_ ) : @_ );
60 2 50       6864 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
61 2         5 my $no_build = delete $args->{__no_BUILD__};
62              
63              
64              
65             # Call BUILD methods
66 2 50 33     7 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  2 50       11  
67              
68             # Unrecognized parameters
69 2 50       3 my @unknown = grep not( do { package My::Deparse::__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       6  
  2 50       13  
  2         13  
  2         17  
70              
71 2         10 return $self;
72             }
73              
74             # Used by constructor to call BUILD methods
75             sub BUILDALL {
76 0     0   0 my $class = ref( $_[0] );
77 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
78 0 0       0 $_->( @_ ) for @{ $meta->{BUILD} || [] };
  0         0  
79             }
80              
81             # Destructor should call DEMOLISH methods
82             sub DESTROY {
83 2     2   2679 my $self = shift;
84 2   33     8 my $class = ref( $self ) || $self;
85 2   33     27 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
86 2 50       14 my $in_global_destruction = defined ${^GLOBAL_PHASE}
87             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
88             : Devel::GlobalDestruction::in_global_destruction();
89 2 50       4 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  2         7  
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         1  
  1         272  
96 0 0       0 die $e if $e; # rethrow
97             }
98 2         21 return;
99             }
100              
101              
102             # See UNIVERSAL
103             sub DOES {
104 7     7   13 my ( $self, $role ) = @_;
105 7         7 our %DOES;
106 7 50       12 return $DOES{$role} if exists $DOES{$role};
107 7 50       10 return 1 if $role eq __PACKAGE__;
108 7 50 0     14 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         40 return $self->SUPER::DOES( $role );
112             }
113              
114             # Alias for Moose/Moo-compatibility
115             sub does {
116 7     7   2037 shift->DOES( @_ );
117             }
118              
119             1;
120             }