File Coverage

/tmp/yQfmG9jiD5.mite.pm
Criterion Covered Total %
statement 65 84 77.3
branch 20 42 47.6
condition 8 30 26.6
subroutine 13 14 92.8
pod n/a
total 106 170 62.3


line stmt bran cond sub pod time code
1             {
2             use strict;
3 3     3   48 use warnings;
  3         36  
  3         270  
4 3     3   111 no warnings qw( once void );
  3         30  
  3         426  
5 3     3   45  
  3         21  
  3         1032  
6             our $USES_MITE = "Mite::Class";
7             our $MITE_SHIM = "Mite::Shim";
8             our $MITE_VERSION = "0.011000";
9             # Mite keywords
10             BEGIN {
11             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "FooMatch" );
12 3     3   42 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
13 3         36 no warnings 'redefine';
14             (
15 3     3   45 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  3         33  
  3         999  
16             sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) },
17 0         0 sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) },
18 0         0 sub {},
19 0         0 sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) },
20             sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) },
21 3         17475 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
22 0         0 );
23 0         0 };
24 3         270  
25             # Gather metadata for constructor and destructor
26             no strict 'refs';
27             my $class = shift; $class = ref($class) || $class;
28             my $linear_isa = mro::get_linear_isa( $class );
29             return {
30 3     3   54 BUILD => [
  3         9  
  3         3351  
31 3   33 3   15 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  3         21  
32 3         30 map { "$_\::BUILD" } reverse @$linear_isa
33             ],
34             DEMOLISH => [
35 3 50       6 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  3         42  
  0         0  
36 3         12 map { "$_\::DEMOLISH" } @$linear_isa
37             ],
38             HAS_BUILDARGS => $class->can('BUILDARGS'),
39 3 50       6 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  3         48  
  0         0  
40 3         15 };
  3         27  
41             }
42              
43              
44             # Standard Moose/Moo-style constructor
45             my $class = ref($_[0]) ? ref(shift) : shift;
46             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
47             my $self = bless {}, $class;
48             my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
49             my $no_build = delete $args->{__no_BUILD__};
50 3 50   3   882  
51 3   33     48 # Attribute attr (type: StrMatch[(?^i:A)])
52 3         9 # has declaration, file ../../../../tmp/yQfmG9jiD5, line 4
53 3 50       39  
  0 50       0  
54 3         21  
55             # Call BUILD methods
56             $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
57              
58 3 50       15 # Unrecognized parameters
  3 50       3  
  3 50       60  
  3         15  
59             my @unknown = grep not( /\Aattr\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
60              
61             return $self;
62 3 50 33     9 }
  3 50       21  
63              
64             # Used by constructor to call BUILD methods
65 3 50       9 my $class = ref( $_[0] );
  3         21  
  3         12  
66             my $meta = ( $Mite::META{$class} ||= $class->__META__ );
67 3         30 $_->( @_ ) for @{ $meta->{BUILD} || [] };
68             }
69              
70             # Destructor should call DEMOLISH methods
71             my $self = shift;
72 0     0   0 my $class = ref( $self ) || $self;
73 0   0     0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
74 0 0       0 my $in_global_destruction = defined ${^GLOBAL_PHASE}
  0         0  
75             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
76             : Devel::GlobalDestruction::in_global_destruction();
77             for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
78             my $e = do {
79 3     3   2427 local ( $?, $@ );
80 3   33     18 eval { $demolisher->( $self, $in_global_destruction ) };
81 3   33     15 $@;
82 3 50       27 };
83             no warnings 'misc'; # avoid (in cleanup) warnings
84             die $e if $e; # rethrow
85 3 50       9 }
  3         12  
86 0         0 return;
87 0         0 }
88 0         0  
  0         0  
89 0         0 my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
90              
91 3     3   48 # Accessors for attr
  3         24  
  3         1788  
92 0 0       0 # has declaration, file ../../../../tmp/yQfmG9jiD5, line 4
93              
94 3         60  
95             # See UNIVERSAL
96             my ( $self, $role ) = @_;
97             our %DOES;
98             return $DOES{$role} if exists $DOES{$role};
99             return 1 if $role eq __PACKAGE__;
100             if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
101 9 100 66 9   120 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
  6 100       231  
  3         15  
  3         9  
102             }
103             return $self->SUPER::DOES( $role );
104             }
105              
106 24     24   45 # Alias for Moose/Moo-compatibility
107 24         30 shift->DOES( @_ );
108 24 50       57 }
109 24 50       45  
110 24 50 0     78 1;
      33