File Coverage

/tmp/RJ5T68lTe4.mite.pm
Criterion Covered Total %
statement 56 88 63.6
branch 13 44 29.5
condition 6 33 18.1
subroutine 12 14 85.7
pod n/a
total 87 179 48.6


line stmt bran cond sub pod time code
1             {
2             package Foo2;
3 6     6   72 use strict;
  6         12  
  6         324  
4 6     6   36 use warnings;
  6         12  
  6         552  
5 6     6   72 no warnings qw( once void );
  6         126  
  6         1398  
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 6     6   60 my ( $SHIM, $CALLER ) = ( "Mite::Shim", "Foo2" );
13 6         48 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
14             package Mite::Shim;
15 6     6   42 no warnings 'redefine';
  6         12  
  6         1524  
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 6         114 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 6         540 );
25             };
26             };
27              
28             # Gather metadata for constructor and destructor
29             sub __META__ {
30 6     6   60 no strict 'refs';
  6         12  
  6         5400  
31 6   33 6   42 my $class = shift; $class = ref($class) || $class;
  6         84  
32 6         60 my $linear_isa = mro::get_linear_isa( $class );
33             return {
34             BUILD => [
35 6 50       12 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  6         48  
  0         0  
36 6         48 map { "$_\::BUILD" } reverse @$linear_isa
37             ],
38             DEMOLISH => [
39 6 50       12 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  6         120  
  0         0  
40 6         18 map { "$_\::DEMOLISH" } @$linear_isa
  6         48  
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 6 50   6   1050 my $class = ref($_[0]) ? ref(shift) : shift;
51 6   33     78 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
52 6         42 my $self = bless {}, $class;
53 6 50       78 my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ };
  0 50       0  
54 6         24 my $no_build = delete $args->{__no_BUILD__};
55              
56             # Attribute num (type: Int)
57             # has declaration, file ../../../../tmp/RJ5T68lTe4, line 3
58 6 50 33     12 do { my $value = exists( $args->{"num"} ) ? $args->{"num"} : "99"; (do { my $tmp = $value; defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/ }) or Mite::Shim::croak "Type check failed in constructor: %s should be %s", "num", "Int"; $self->{"num"} = $value; };
  6 50       18  
  6 50       6  
  6         18  
  6         180  
  0         0  
59              
60              
61             # Call BUILD methods
62 0 0 0     0 $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
  0 0       0  
63              
64             # Unrecognized parameters
65 0 0       0 my @unknown = grep not( /\Anum\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
  0         0  
  0         0  
66              
67 0         0 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 6     6   24 my $self = shift;
80 6   33     30 my $class = ref( $self ) || $self;
81 6   33     30 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
82 6 50       102 my $in_global_destruction = defined ${^GLOBAL_PHASE}
83             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
84             : Devel::GlobalDestruction::in_global_destruction();
85 6 50       24 for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
  6         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 6     6   132 no warnings 'misc'; # avoid (in cleanup) warnings
  6         18  
  6         2946  
92 0 0       0 die $e if $e; # rethrow
93             }
94 6         36 return;
95             }
96              
97             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
98              
99             # Accessors for num
100             # has declaration, file ../../../../tmp/RJ5T68lTe4, line 3
101 0 0 0 0   0 sub num { @_ > 1 ? do { (do { my $tmp = $_[1]; defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/ }) or Mite::Shim::croak( "Type check failed in %s: value should be %s", "accessor", "Int" ); $_[0]{"num"} = $_[1]; $_[0]; } : ( $_[0]{"num"} ) }
  0 0       0  
  0 0       0  
  0         0  
  0         0  
  0         0  
102              
103              
104             # See UNIVERSAL
105             sub DOES {
106 42     42   90 my ( $self, $role ) = @_;
107 42         42 our %DOES;
108 42 50       126 return $DOES{$role} if exists $DOES{$role};
109 42 50       78 return 1 if $role eq __PACKAGE__;
110 42 50 0     120 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
      33        
111 0 0 0     0 $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
112             }
113 42         234 return $self->SUPER::DOES( $role );
114             }
115              
116             # Alias for Moose/Moo-compatibility
117             sub does {
118 42     42   17238 shift->DOES( @_ );
119             }
120              
121             1;
122             }