File Coverage

/tmp/FVuWWVMMp4.mite.pm
Criterion Covered Total %
statement 67 88 76.1
branch 19 44 43.1
condition 8 33 24.2
subroutine 13 14 92.8
pod n/a
total 107 179 59.7


line stmt bran cond sub pod time code
1             {
2             use strict;
3 6     6   66 use warnings;
  6         36  
  6         336  
4 6     6   54 no warnings qw( once void );
  6         12  
  6         504  
5 6     6   54  
  6         30  
  6         1296  
6             our $USES_MITE = "Mite::Class";
7             our $MITE_SHIM = "Mite::Shim";
8             our $MITE_VERSION = "0.010008";
9             # Mite keywords
10             BEGIN {
11             my ( $SHIM, $CALLER ) = ( "Mite::Shim", "Foo3" );
12 6     6   54 ( *after, *around, *before, *extends, *has, *signature_for, *with ) = do {
13 6         480 no warnings 'redefine';
14             (
15 6     6   60 sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) },
  6         30  
  6         1392  
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 6         90 sub { $SHIM->HANDLE_with( $CALLER, @_ ) },
22 0         0 );
23 0         0 };
24 6         330  
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 6     6   42 BUILD => [
  6         12  
  6         4686  
31 6   33 6   12 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  6         60  
32 6         84 map { "$_\::BUILD" } reverse @$linear_isa
33             ],
34             DEMOLISH => [
35 6 50       30 map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () }
  6         72  
  0         0  
36 6         42 map { "$_\::DEMOLISH" } @$linear_isa
37             ],
38             HAS_BUILDARGS => $class->can('BUILDARGS'),
39 6 50       30 HAS_FOREIGNBUILDARGS => $class->can('FOREIGNBUILDARGS'),
  6         174  
  0         0  
40 6         30 };
  6         24  
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 6 50   6   1014  
51 6   33     54 # Attribute num (type: Int)
52 6         24 # has declaration, file ../../../../tmp/FVuWWVMMp4, line 3
53 6 50       42 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; };
  0 50       0  
54 6         18  
55              
56             # Call BUILD methods
57             $self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } );
58 6 50 33     36  
  6 50       24  
  6 50       24  
  6         18  
  6         180  
  6         48  
59             # Unrecognized parameters
60             my @unknown = grep not( /\Anum\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) );
61              
62 6 50 33     24 return $self;
  6 50       36  
63             }
64              
65 6 50       18 # Used by constructor to call BUILD methods
  6         42  
  6         54  
66             my $class = ref( $_[0] );
67 6         48 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
68             $_->( @_ ) for @{ $meta->{BUILD} || [] };
69             }
70              
71             # Destructor should call DEMOLISH methods
72 0     0   0 my $self = shift;
73 0   0     0 my $class = ref( $self ) || $self;
74 0 0       0 my $meta = ( $Mite::META{$class} ||= $class->__META__ );
  0         0  
75             my $in_global_destruction = defined ${^GLOBAL_PHASE}
76             ? ${^GLOBAL_PHASE} eq 'DESTRUCT'
77             : Devel::GlobalDestruction::in_global_destruction();
78             for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) {
79 6     6   10380 my $e = do {
80 6   33     24 local ( $?, $@ );
81 6   33     30 eval { $demolisher->( $self, $in_global_destruction ) };
82 6 50       36 $@;
83             };
84             no warnings 'misc'; # avoid (in cleanup) warnings
85 6 50       42 die $e if $e; # rethrow
  6         72  
86 0         0 }
87 0         0 return;
88 0         0 }
  0         0  
89 0         0  
90             my $__XS = !$ENV{PERL_ONLY} && eval { require Class::XSAccessor; Class::XSAccessor->VERSION("1.19") };
91 6     6   84  
  6         12  
  6         2460  
92 0 0       0 # Accessors for num
93             # has declaration, file ../../../../tmp/FVuWWVMMp4, line 3
94 6         66  
95              
96             # See UNIVERSAL
97             my ( $self, $role ) = @_;
98             our %DOES;
99             return $DOES{$role} if exists $DOES{$role};
100             return 1 if $role eq __PACKAGE__;
101 6 50 33 6   60 if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) {
  6 50       30  
  6 50       24  
  6         90  
  0         0  
  0         0  
102             $meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1;
103             }
104             return $self->SUPER::DOES( $role );
105             }
106 42     42   72  
107 42         42 # Alias for Moose/Moo-compatibility
108 42 50       66 shift->DOES( @_ );
109 42 50       78 }
110 42 50 0     126  
      33        
111 0 0 0     0 1;