line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
{ |
2
|
|
|
|
|
|
|
package Foo; |
3
|
3
|
|
|
3
|
|
57
|
use strict; |
|
3
|
|
|
|
|
24
|
|
|
3
|
|
|
|
|
312
|
|
4
|
3
|
|
|
3
|
|
36
|
use warnings; |
|
3
|
|
|
|
|
21
|
|
|
3
|
|
|
|
|
390
|
|
5
|
3
|
|
|
3
|
|
45
|
no warnings qw( once void ); |
|
3
|
|
|
|
|
21
|
|
|
3
|
|
|
|
|
1458
|
|
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
|
3
|
|
|
3
|
|
30
|
my ( $SHIM, $CALLER ) = ( "Mite::Shim", "Foo" ); |
13
|
3
|
|
|
|
|
21
|
( *after, *around, *before, *extends, *has, *signature_for, *with ) = do { |
14
|
|
|
|
|
|
|
package Mite::Shim; |
15
|
3
|
|
|
3
|
|
36
|
no warnings 'redefine'; |
|
3
|
|
|
|
|
9
|
|
|
3
|
|
|
|
|
1278
|
|
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
|
3
|
|
|
|
|
141
|
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
|
3
|
|
|
|
|
201
|
); |
25
|
|
|
|
|
|
|
}; |
26
|
|
|
|
|
|
|
}; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# Gather metadata for constructor and destructor |
29
|
|
|
|
|
|
|
sub __META__ { |
30
|
3
|
|
|
3
|
|
39
|
no strict 'refs'; |
|
3
|
|
|
|
|
33
|
|
|
3
|
|
|
|
|
4263
|
|
31
|
3
|
|
33
|
3
|
|
30
|
my $class = shift; $class = ref($class) || $class; |
|
3
|
|
|
|
|
42
|
|
32
|
3
|
|
|
|
|
27
|
my $linear_isa = mro::get_linear_isa( $class ); |
33
|
|
|
|
|
|
|
return { |
34
|
|
|
|
|
|
|
BUILD => [ |
35
|
3
|
50
|
|
|
|
9
|
map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () } |
|
3
|
|
|
|
|
51
|
|
|
0
|
|
|
|
|
0
|
|
36
|
3
|
|
|
|
|
42
|
map { "$_\::BUILD" } reverse @$linear_isa |
37
|
|
|
|
|
|
|
], |
38
|
|
|
|
|
|
|
DEMOLISH => [ |
39
|
3
|
50
|
|
|
|
30
|
map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () } |
|
3
|
|
|
|
|
192
|
|
|
0
|
|
|
|
|
0
|
|
40
|
3
|
|
|
|
|
18
|
map { "$_\::DEMOLISH" } @$linear_isa |
|
3
|
|
|
|
|
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
|
3
|
50
|
|
3
|
|
735
|
my $class = ref($_[0]) ? ref(shift) : shift; |
51
|
3
|
|
33
|
|
|
84
|
my $meta = ( $Mite::META{$class} ||= $class->__META__ ); |
52
|
3
|
|
|
|
|
81
|
my $self = bless {}, $class; |
53
|
3
|
50
|
|
|
|
18
|
my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ }; |
|
0
|
50
|
|
|
|
0
|
|
54
|
3
|
|
|
|
|
6
|
my $no_build = delete $args->{__no_BUILD__}; |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
# Attribute num (type: Int) |
57
|
|
|
|
|
|
|
# has declaration, file ../../../../tmp/4rLRJ5T68l, line 11 |
58
|
3
|
0
|
0
|
|
|
57
|
if ( exists $args->{"num"} ) { (do { my $tmp = $args->{"num"}; 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"} = $args->{"num"}; } ; |
|
0
|
0
|
|
|
|
0
|
|
|
0
|
50
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
# Call BUILD methods |
62
|
3
|
50
|
33
|
|
|
27
|
$self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } ); |
|
3
|
50
|
|
|
|
15
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
# Unrecognized parameters |
65
|
3
|
50
|
|
|
|
21
|
my @unknown = grep not( /\Anum\z/ ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) ); |
|
3
|
|
|
|
|
12
|
|
|
3
|
|
|
|
|
21
|
|
66
|
|
|
|
|
|
|
|
67
|
3
|
|
|
|
|
18
|
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
|
3
|
|
|
3
|
|
1329
|
my $self = shift; |
80
|
3
|
|
33
|
|
|
12
|
my $class = ref( $self ) || $self; |
81
|
3
|
|
33
|
|
|
12
|
my $meta = ( $Mite::META{$class} ||= $class->__META__ ); |
82
|
3
|
50
|
|
|
|
15
|
my $in_global_destruction = defined ${^GLOBAL_PHASE} |
83
|
|
|
|
|
|
|
? ${^GLOBAL_PHASE} eq 'DESTRUCT' |
84
|
|
|
|
|
|
|
: Devel::GlobalDestruction::in_global_destruction(); |
85
|
3
|
50
|
|
|
|
27
|
for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) { |
|
3
|
|
|
|
|
18
|
|
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
|
3
|
|
|
3
|
|
36
|
no warnings 'misc'; # avoid (in cleanup) warnings |
|
3
|
|
|
|
|
45
|
|
|
3
|
|
|
|
|
5505
|
|
92
|
0
|
0
|
|
|
|
0
|
die $e if $e; # rethrow |
93
|
|
|
|
|
|
|
} |
94
|
3
|
|
|
|
|
30
|
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/4rLRJ5T68l, line 11 |
101
|
|
|
|
|
|
|
if ( $__XS ) { |
102
|
|
|
|
|
|
|
Class::XSAccessor->import( |
103
|
|
|
|
|
|
|
chained => 1, |
104
|
|
|
|
|
|
|
"exists_predicates" => { "has_num" => "num" }, |
105
|
|
|
|
|
|
|
); |
106
|
|
|
|
|
|
|
} |
107
|
|
|
|
|
|
|
else { |
108
|
|
|
|
|
|
|
*has_num = sub { @_ == 1 or Mite::Shim::croak( 'Predicate "has_num" usage: $self->has_num()' ); exists $_[0]{"num"} }; |
109
|
|
|
|
|
|
|
} |
110
|
9
|
50
|
33
|
9
|
|
48
|
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]; } : do { ( exists($_[0]{"num"}) ? $_[0]{"num"} : ( $_[0]{"num"} = do { my $default_value = $_[0]->_build_num; (do { my $tmp = $default_value; defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/ }) or Mite::Shim::croak( "Type check failed in default: %s should be %s", "num", "Int" ); $default_value } ) ) } } |
|
3
|
50
|
33
|
|
|
6
|
|
|
3
|
50
|
|
|
|
6
|
|
|
3
|
50
|
|
|
|
57
|
|
|
3
|
100
|
|
|
|
12
|
|
|
3
|
100
|
|
|
|
12
|
|
|
6
|
|
|
|
|
30
|
|
|
3
|
|
|
|
|
12
|
|
|
3
|
|
|
|
|
3
|
|
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
54
|
|
|
3
|
|
|
|
|
24
|
|
111
|
9
|
50
|
|
9
|
|
27
|
sub clear_num { @_ == 1 or Mite::Shim::croak( 'Clearer "clear_num" usage: $self->clear_num()' ); delete $_[0]{"num"}; $_[0]; } |
|
9
|
|
|
|
|
18
|
|
|
9
|
|
|
|
|
15
|
|
112
|
6
|
50
|
33
|
6
|
|
4530
|
sub get_num { @_ == 1 or Mite::Shim::croak( 'Reader "get_num" usage: $self->get_num()' ); ( exists($_[0]{"num"}) ? $_[0]{"num"} : ( $_[0]{"num"} = do { my $default_value = $_[0]->_build_num; (do { my $tmp = $default_value; defined($tmp) and !ref($tmp) and $tmp =~ /\A-?[0-9]+\z/ }) or Mite::Shim::croak( "Type check failed in default: %s should be %s", "num", "Int" ); $default_value } ) ) } |
|
6
|
50
|
|
|
|
48
|
|
|
3
|
50
|
|
|
|
24
|
|
|
3
|
100
|
|
|
|
6
|
|
|
3
|
|
|
|
|
3
|
|
|
3
|
|
|
|
|
75
|
|
|
3
|
|
|
|
|
78
|
|
113
|
0
|
0
|
0
|
0
|
|
0
|
sub set_num { @_ == 2 or Mite::Shim::croak( 'Writer "set_num" usage: $self->set_num( $newvalue )' ); (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", "writer", "Int" ); $_[0]{"num"} = $_[1]; $_[0]; } |
|
0
|
0
|
|
|
|
0
|
|
|
0
|
0
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
# See UNIVERSAL |
117
|
|
|
|
|
|
|
sub DOES { |
118
|
21
|
|
|
21
|
|
69
|
my ( $self, $role ) = @_; |
119
|
21
|
|
|
|
|
48
|
our %DOES; |
120
|
21
|
50
|
|
|
|
72
|
return $DOES{$role} if exists $DOES{$role}; |
121
|
21
|
50
|
|
|
|
60
|
return 1 if $role eq __PACKAGE__; |
122
|
21
|
50
|
0
|
|
|
60
|
if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) { |
|
|
|
33
|
|
|
|
|
123
|
0
|
0
|
0
|
|
|
0
|
$meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1; |
124
|
|
|
|
|
|
|
} |
125
|
21
|
|
|
|
|
189
|
return $self->SUPER::DOES( $role ); |
126
|
|
|
|
|
|
|
} |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
# Alias for Moose/Moo-compatibility |
129
|
|
|
|
|
|
|
sub does { |
130
|
21
|
|
|
21
|
|
15357
|
shift->DOES( @_ ); |
131
|
|
|
|
|
|
|
} |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
1; |
134
|
|
|
|
|
|
|
} |