line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
{ |
2
|
|
|
|
|
|
|
package xGP; |
3
|
1
|
|
|
1
|
|
9
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
35
|
|
4
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
39
|
|
5
|
1
|
|
|
1
|
|
4
|
no warnings qw( once void ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
167
|
|
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
|
1
|
|
|
1
|
|
5
|
my ( $SHIM, $CALLER ) = ( "Mite::Shim", "xGP" ); |
13
|
1
|
|
|
|
|
5
|
( *after, *around, *before, *extends, *has, *signature_for, *with ) = do { |
14
|
|
|
|
|
|
|
package Mite::Shim; |
15
|
1
|
|
|
1
|
|
7
|
no warnings 'redefine'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
209
|
|
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
|
0
|
|
|
|
|
0
|
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
|
1
|
|
|
|
|
45
|
); |
25
|
|
|
|
|
|
|
}; |
26
|
|
|
|
|
|
|
}; |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# Gather metadata for constructor and destructor |
29
|
|
|
|
|
|
|
sub __META__ { |
30
|
1
|
|
|
1
|
|
6
|
no strict 'refs'; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
662
|
|
31
|
0
|
|
0
|
0
|
|
0
|
my $class = shift; $class = ref($class) || $class; |
|
0
|
|
|
|
|
0
|
|
32
|
0
|
|
|
|
|
0
|
my $linear_isa = mro::get_linear_isa( $class ); |
33
|
|
|
|
|
|
|
return { |
34
|
|
|
|
|
|
|
BUILD => [ |
35
|
0
|
0
|
|
|
|
0
|
map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () } |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
36
|
0
|
|
|
|
|
0
|
map { "$_\::BUILD" } reverse @$linear_isa |
37
|
|
|
|
|
|
|
], |
38
|
|
|
|
|
|
|
DEMOLISH => [ |
39
|
0
|
0
|
|
|
|
0
|
map { ( *{$_}{CODE} ) ? ( *{$_}{CODE} ) : () } |
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
40
|
0
|
|
|
|
|
0
|
map { "$_\::DEMOLISH" } @$linear_isa |
|
0
|
|
|
|
|
0
|
|
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
|
0
|
0
|
|
0
|
|
0
|
my $class = ref($_[0]) ? ref(shift) : shift; |
51
|
0
|
|
0
|
|
|
0
|
my $meta = ( $Mite::META{$class} ||= $class->__META__ ); |
52
|
0
|
|
|
|
|
0
|
my $self = bless {}, $class; |
53
|
0
|
0
|
|
|
|
0
|
my $args = $meta->{HAS_BUILDARGS} ? $class->BUILDARGS( @_ ) : { ( @_ == 1 ) ? %{$_[0]} : @_ }; |
|
0
|
0
|
|
|
|
0
|
|
54
|
0
|
|
|
|
|
0
|
my $no_build = delete $args->{__no_BUILD__}; |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
# Call BUILD methods |
59
|
0
|
0
|
0
|
|
|
0
|
$self->BUILDALL( $args ) if ( ! $no_build and @{ $meta->{BUILD} || [] } ); |
|
0
|
0
|
|
|
|
0
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
# Unrecognized parameters |
62
|
0
|
0
|
|
|
|
0
|
my @unknown = grep not( do { package xGP::__SAFE_NAMESPACE__; defined($_) and do { ref(\$_) eq 'SCALAR' or ref(\(my $val = $_)) eq 'SCALAR' } } ), keys %{$args}; @unknown and Mite::Shim::croak( "Unexpected keys in constructor: " . join( q[, ], sort @unknown ) ); |
|
0
|
0
|
|
|
|
0
|
|
|
0
|
0
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
|
0
|
|
|
|
|
0
|
|
63
|
|
|
|
|
|
|
|
64
|
0
|
|
|
|
|
0
|
return $self; |
65
|
|
|
|
|
|
|
} |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
# Used by constructor to call BUILD methods |
68
|
|
|
|
|
|
|
sub BUILDALL { |
69
|
0
|
|
|
0
|
|
0
|
my $class = ref( $_[0] ); |
70
|
0
|
|
0
|
|
|
0
|
my $meta = ( $Mite::META{$class} ||= $class->__META__ ); |
71
|
0
|
0
|
|
|
|
0
|
$_->( @_ ) for @{ $meta->{BUILD} || [] }; |
|
0
|
|
|
|
|
0
|
|
72
|
|
|
|
|
|
|
} |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
# Destructor should call DEMOLISH methods |
75
|
|
|
|
|
|
|
sub DESTROY { |
76
|
0
|
|
|
0
|
|
0
|
my $self = shift; |
77
|
0
|
|
0
|
|
|
0
|
my $class = ref( $self ) || $self; |
78
|
0
|
|
0
|
|
|
0
|
my $meta = ( $Mite::META{$class} ||= $class->__META__ ); |
79
|
0
|
0
|
|
|
|
0
|
my $in_global_destruction = defined ${^GLOBAL_PHASE} |
80
|
|
|
|
|
|
|
? ${^GLOBAL_PHASE} eq 'DESTRUCT' |
81
|
|
|
|
|
|
|
: Devel::GlobalDestruction::in_global_destruction(); |
82
|
0
|
0
|
|
|
|
0
|
for my $demolisher ( @{ $meta->{DEMOLISH} || [] } ) { |
|
0
|
|
|
|
|
0
|
|
83
|
0
|
|
|
|
|
0
|
my $e = do { |
84
|
0
|
|
|
|
|
0
|
local ( $?, $@ ); |
85
|
0
|
|
|
|
|
0
|
eval { $demolisher->( $self, $in_global_destruction ) }; |
|
0
|
|
|
|
|
0
|
|
86
|
0
|
|
|
|
|
0
|
$@; |
87
|
|
|
|
|
|
|
}; |
88
|
1
|
|
|
1
|
|
7
|
no warnings 'misc'; # avoid (in cleanup) warnings |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
235
|
|
89
|
0
|
0
|
|
|
|
0
|
die $e if $e; # rethrow |
90
|
|
|
|
|
|
|
} |
91
|
0
|
|
|
|
|
0
|
return; |
92
|
|
|
|
|
|
|
} |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
# See UNIVERSAL |
96
|
|
|
|
|
|
|
sub DOES { |
97
|
28
|
|
|
28
|
|
36
|
my ( $self, $role ) = @_; |
98
|
28
|
|
|
|
|
26
|
our %DOES; |
99
|
28
|
50
|
|
|
|
54
|
return $DOES{$role} if exists $DOES{$role}; |
100
|
28
|
50
|
|
|
|
39
|
return 1 if $role eq __PACKAGE__; |
101
|
28
|
50
|
0
|
|
|
52
|
if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) { |
|
|
|
33
|
|
|
|
|
102
|
0
|
0
|
0
|
|
|
0
|
$meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1; |
103
|
|
|
|
|
|
|
} |
104
|
28
|
|
|
|
|
134
|
return $self->SUPER::DOES( $role ); |
105
|
|
|
|
|
|
|
} |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
# Alias for Moose/Moo-compatibility |
108
|
|
|
|
|
|
|
sub does { |
109
|
7
|
|
|
7
|
|
2209
|
shift->DOES( @_ ); |
110
|
|
|
|
|
|
|
} |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
1; |
113
|
|
|
|
|
|
|
}{ |
114
|
|
|
|
|
|
|
package xP1; |
115
|
1
|
|
|
1
|
|
7
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
34
|
|
116
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
26
|
|
117
|
1
|
|
|
1
|
|
4
|
no warnings qw( once void ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
120
|
|
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
our $USES_MITE = "Mite::Class"; |
120
|
|
|
|
|
|
|
our $MITE_SHIM = "Mite::Shim"; |
121
|
|
|
|
|
|
|
our $MITE_VERSION = "0.012000"; |
122
|
|
|
|
|
|
|
# Mite keywords |
123
|
|
|
|
|
|
|
BEGIN { |
124
|
1
|
|
|
1
|
|
5
|
my ( $SHIM, $CALLER ) = ( "Mite::Shim", "xP1" ); |
125
|
1
|
|
|
|
|
1
|
( *after, *around, *before, *extends, *has, *signature_for, *with ) = do { |
126
|
|
|
|
|
|
|
package Mite::Shim; |
127
|
1
|
|
|
1
|
|
6
|
no warnings 'redefine'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
206
|
|
128
|
|
|
|
|
|
|
( |
129
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) }, |
130
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) }, |
131
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) }, |
132
|
|
|
|
|
|
|
sub {}, |
133
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) }, |
134
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) }, |
135
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_with( $CALLER, @_ ) }, |
136
|
1
|
|
|
|
|
44
|
); |
137
|
|
|
|
|
|
|
}; |
138
|
|
|
|
|
|
|
}; |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
BEGIN { |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
|
144
|
1
|
|
|
1
|
|
6
|
use mro 'c3'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
21
|
|
145
|
1
|
|
|
1
|
|
59
|
our @ISA; |
146
|
1
|
|
|
|
|
216
|
push @ISA, "xGP"; |
147
|
|
|
|
|
|
|
} |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
# See UNIVERSAL |
151
|
|
|
|
|
|
|
sub DOES { |
152
|
14
|
|
|
14
|
|
19
|
my ( $self, $role ) = @_; |
153
|
14
|
|
|
|
|
12
|
our %DOES; |
154
|
14
|
50
|
|
|
|
22
|
return $DOES{$role} if exists $DOES{$role}; |
155
|
14
|
50
|
|
|
|
21
|
return 1 if $role eq __PACKAGE__; |
156
|
14
|
50
|
0
|
|
|
18
|
if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) { |
|
|
|
33
|
|
|
|
|
157
|
0
|
0
|
0
|
|
|
0
|
$meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1; |
158
|
|
|
|
|
|
|
} |
159
|
14
|
|
|
|
|
29
|
return $self->SUPER::DOES( $role ); |
160
|
|
|
|
|
|
|
} |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
# Alias for Moose/Moo-compatibility |
163
|
|
|
|
|
|
|
sub does { |
164
|
7
|
|
|
7
|
|
617
|
shift->DOES( @_ ); |
165
|
|
|
|
|
|
|
} |
166
|
|
|
|
|
|
|
|
167
|
|
|
|
|
|
|
1; |
168
|
|
|
|
|
|
|
}{ |
169
|
|
|
|
|
|
|
package xP2; |
170
|
1
|
|
|
1
|
|
15
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
24
|
|
171
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
43
|
|
172
|
1
|
|
|
1
|
|
6
|
no warnings qw( once void ); |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
129
|
|
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
our $USES_MITE = "Mite::Class"; |
175
|
|
|
|
|
|
|
our $MITE_SHIM = "Mite::Shim"; |
176
|
|
|
|
|
|
|
our $MITE_VERSION = "0.012000"; |
177
|
|
|
|
|
|
|
# Mite keywords |
178
|
|
|
|
|
|
|
BEGIN { |
179
|
1
|
|
|
1
|
|
5
|
my ( $SHIM, $CALLER ) = ( "Mite::Shim", "xP2" ); |
180
|
1
|
|
|
|
|
2
|
( *after, *around, *before, *extends, *has, *signature_for, *with ) = do { |
181
|
|
|
|
|
|
|
package Mite::Shim; |
182
|
1
|
|
|
1
|
|
7
|
no warnings 'redefine'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
189
|
|
183
|
|
|
|
|
|
|
( |
184
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) }, |
185
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) }, |
186
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) }, |
187
|
|
|
|
|
|
|
sub {}, |
188
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) }, |
189
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) }, |
190
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_with( $CALLER, @_ ) }, |
191
|
1
|
|
|
|
|
44
|
); |
192
|
|
|
|
|
|
|
}; |
193
|
|
|
|
|
|
|
}; |
194
|
|
|
|
|
|
|
|
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
BEGIN { |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
|
199
|
1
|
|
|
1
|
|
14
|
use mro 'c3'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
200
|
1
|
|
|
1
|
|
47
|
our @ISA; |
201
|
1
|
|
|
|
|
202
|
push @ISA, "xGP"; |
202
|
|
|
|
|
|
|
} |
203
|
|
|
|
|
|
|
|
204
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
# See UNIVERSAL |
206
|
|
|
|
|
|
|
sub DOES { |
207
|
7
|
|
|
7
|
|
9
|
my ( $self, $role ) = @_; |
208
|
7
|
|
|
|
|
8
|
our %DOES; |
209
|
7
|
50
|
|
|
|
15
|
return $DOES{$role} if exists $DOES{$role}; |
210
|
7
|
50
|
|
|
|
9
|
return 1 if $role eq __PACKAGE__; |
211
|
7
|
50
|
0
|
|
|
17
|
if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) { |
|
|
|
33
|
|
|
|
|
212
|
0
|
0
|
0
|
|
|
0
|
$meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1; |
213
|
|
|
|
|
|
|
} |
214
|
7
|
|
|
|
|
20
|
return $self->SUPER::DOES( $role ); |
215
|
|
|
|
|
|
|
} |
216
|
|
|
|
|
|
|
|
217
|
|
|
|
|
|
|
# Alias for Moose/Moo-compatibility |
218
|
|
|
|
|
|
|
sub does { |
219
|
7
|
|
|
7
|
|
639
|
shift->DOES( @_ ); |
220
|
|
|
|
|
|
|
} |
221
|
|
|
|
|
|
|
|
222
|
|
|
|
|
|
|
1; |
223
|
|
|
|
|
|
|
}{ |
224
|
|
|
|
|
|
|
package xC1; |
225
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
36
|
|
226
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
27
|
|
227
|
1
|
|
|
1
|
|
4
|
no warnings qw( once void ); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
114
|
|
228
|
|
|
|
|
|
|
|
229
|
|
|
|
|
|
|
our $USES_MITE = "Mite::Class"; |
230
|
|
|
|
|
|
|
our $MITE_SHIM = "Mite::Shim"; |
231
|
|
|
|
|
|
|
our $MITE_VERSION = "0.012000"; |
232
|
|
|
|
|
|
|
# Mite keywords |
233
|
|
|
|
|
|
|
BEGIN { |
234
|
1
|
|
|
1
|
|
5
|
my ( $SHIM, $CALLER ) = ( "Mite::Shim", "xC1" ); |
235
|
1
|
|
|
|
|
1
|
( *after, *around, *before, *extends, *has, *signature_for, *with ) = do { |
236
|
|
|
|
|
|
|
package Mite::Shim; |
237
|
1
|
|
|
1
|
|
6
|
no warnings 'redefine'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
202
|
|
238
|
|
|
|
|
|
|
( |
239
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_after( $CALLER, "class", @_ ) }, |
240
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_around( $CALLER, "class", @_ ) }, |
241
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_before( $CALLER, "class", @_ ) }, |
242
|
|
|
|
|
|
|
sub {}, |
243
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_has( $CALLER, has => @_ ) }, |
244
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_signature_for( $CALLER, "class", @_ ) }, |
245
|
0
|
|
|
|
|
0
|
sub { $SHIM->HANDLE_with( $CALLER, @_ ) }, |
246
|
1
|
|
|
|
|
46
|
); |
247
|
|
|
|
|
|
|
}; |
248
|
|
|
|
|
|
|
}; |
249
|
|
|
|
|
|
|
|
250
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
BEGIN { |
252
|
|
|
|
|
|
|
|
253
|
|
|
|
|
|
|
|
254
|
1
|
|
|
1
|
|
6
|
use mro 'c3'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
4
|
|
255
|
1
|
|
|
1
|
|
35
|
our @ISA; |
256
|
1
|
|
|
|
|
229
|
push @ISA, "xP1", "xP2"; |
257
|
|
|
|
|
|
|
} |
258
|
|
|
|
|
|
|
|
259
|
|
|
|
|
|
|
|
260
|
|
|
|
|
|
|
# See UNIVERSAL |
261
|
|
|
|
|
|
|
sub DOES { |
262
|
7
|
|
|
7
|
|
11
|
my ( $self, $role ) = @_; |
263
|
7
|
|
|
|
|
7
|
our %DOES; |
264
|
7
|
50
|
|
|
|
15
|
return $DOES{$role} if exists $DOES{$role}; |
265
|
7
|
50
|
|
|
|
12
|
return 1 if $role eq __PACKAGE__; |
266
|
7
|
50
|
0
|
|
|
12
|
if ( $INC{'Moose/Util.pm'} and my $meta = Moose::Util::find_meta( ref $self or $self ) ) { |
|
|
|
33
|
|
|
|
|
267
|
0
|
0
|
0
|
|
|
0
|
$meta->can( 'does_role' ) and $meta->does_role( $role ) and return 1; |
268
|
|
|
|
|
|
|
} |
269
|
7
|
|
|
|
|
17
|
return $self->SUPER::DOES( $role ); |
270
|
|
|
|
|
|
|
} |
271
|
|
|
|
|
|
|
|
272
|
|
|
|
|
|
|
# Alias for Moose/Moo-compatibility |
273
|
|
|
|
|
|
|
sub does { |
274
|
7
|
|
|
7
|
|
565
|
shift->DOES( @_ ); |
275
|
|
|
|
|
|
|
} |
276
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
1; |
278
|
|
|
|
|
|
|
} |