File Coverage

/tmp/8oNL4RD3Ue.mite.pm
Criterion Covered Total %
statement 58 77 75.3
branch 14 34 41.1
condition 6 27 22.2
subroutine 12 13 92.3
pod n/a
total 90 151 59.6


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