changelog
[gitmo/Moose.git] / lib / Moose / Meta / Role.pm
CommitLineData
e185c027 1
2package Moose::Meta::Role;
3
4use strict;
5use warnings;
6use metaclass;
7
bdabd620 8use Carp 'confess';
21f1e231 9use Scalar::Util 'blessed';
bdabd620 10
a94188ac 11our $VERSION = '0.56';
d44714be 12our $AUTHORITY = 'cpan:STEVAN';
e185c027 13
8ee73eeb 14use Moose::Meta::Class;
39b3bc94 15use Moose::Meta::Role::Method;
d67145ed 16use Moose::Meta::Role::Method::Required;
8ee73eeb 17
68efb014 18use base 'Class::MOP::Module';
80572233 19
fb1e11d5 20## ------------------------------------------------------------------
21## NOTE:
22## I normally don't do this, but I am doing
23## a whole bunch of meta-programmin in this
24## module, so it just makes sense. For a clearer
25## picture of what is going on in the next
26## several lines of code, look at the really
27## big comment at the end of this file (right
28## before the POD).
29## - SL
30## ------------------------------------------------------------------
80572233 31
21716c07 32my $META = __PACKAGE__->meta;
33
34## ------------------------------------------------------------------
35## attributes ...
e185c027 36
21716c07 37# NOTE:
38# since roles are lazy, we hold all the attributes
fb1e11d5 39# of the individual role in 'statis' until which
40# time when it is applied to a class. This means
41# keeping a lot of things in hash maps, so we are
21716c07 42# using a little of that meta-programmin' magic
fb1e11d5 43# here an saving lots of extra typin. And since
44# many of these attributes above require similar
45# functionality to support them, so we again use
46# the wonders of meta-programmin' to deliver a
21716c07 47# very compact solution to this normally verbose
48# problem.
49# - SL
50
51foreach my $action (
fb1e11d5 52 {
53 name => 'excluded_roles_map',
54 attr_reader => 'get_excluded_roles_map' ,
21716c07 55 methods => {
fb1e11d5 56 add => 'add_excluded_roles',
57 get_list => 'get_excluded_roles_list',
58 existence => 'excludes_role',
21716c07 59 }
60 },
fb1e11d5 61 {
62 name => 'required_methods',
21716c07 63 attr_reader => 'get_required_methods_map',
64 methods => {
fb1e11d5 65 add => 'add_required_methods',
21716c07 66 remove => 'remove_required_methods',
67 get_list => 'get_required_method_list',
68 existence => 'requires_method',
69 }
709c321c 70 },
21716c07 71 {
fb1e11d5 72 name => 'attribute_map',
21716c07 73 attr_reader => 'get_attribute_map',
74 methods => {
75 get => 'get_attribute',
76 get_list => 'get_attribute_list',
77 existence => 'has_attribute',
78 remove => 'remove_attribute',
79 }
80 }
81) {
fb1e11d5 82
21716c07 83 my $attr_reader = $action->{attr_reader};
84 my $methods = $action->{methods};
fb1e11d5 85
86 # create the attribute
87 $META->add_attribute($action->{name} => (
88 reader => $attr_reader,
89 default => sub { {} }
90 ));
91
92 # create some helper methods
21716c07 93 $META->add_method($methods->{add} => sub {
94 my ($self, @values) = @_;
fb1e11d5 95 $self->$attr_reader->{$_} = undef foreach @values;
21716c07 96 }) if exists $methods->{add};
fb1e11d5 97
21716c07 98 $META->add_method($methods->{get_list} => sub {
99 my ($self) = @_;
fb1e11d5 100 keys %{$self->$attr_reader};
101 }) if exists $methods->{get_list};
102
21716c07 103 $META->add_method($methods->{get} => sub {
104 my ($self, $name) = @_;
fb1e11d5 105 $self->$attr_reader->{$name}
106 }) if exists $methods->{get};
107
21716c07 108 $META->add_method($methods->{existence} => sub {
109 my ($self, $name) = @_;
fb1e11d5 110 exists $self->$attr_reader->{$name} ? 1 : 0;
111 }) if exists $methods->{existence};
112
21716c07 113 $META->add_method($methods->{remove} => sub {
114 my ($self, @values) = @_;
115 delete $self->$attr_reader->{$_} foreach @values;
fb1e11d5 116 }) if exists $methods->{remove};
21716c07 117}
d79e62fd 118
21716c07 119## some things don't always fit, so they go here ...
80572233 120
21716c07 121sub add_attribute {
122 my $self = shift;
123 my $name = shift;
124 my $attr_desc;
125 if (scalar @_ == 1 && ref($_[0]) eq 'HASH') {
126 $attr_desc = $_[0];
127 }
128 else {
129 $attr_desc = { @_ };
130 }
131 $self->get_attribute_map->{$name} = $attr_desc;
132}
e185c027 133
bca01282 134# DEPRECATED
135# sub _clean_up_required_methods {
136# my $self = shift;
137# foreach my $method ($self->get_required_method_list) {
138# $self->remove_required_methods($method)
139# if $self->has_method($method);
140# }
141# }
1331430a 142
21716c07 143## ------------------------------------------------------------------
144## method modifiers
145
21716c07 146# NOTE:
fb1e11d5 147# the before/around/after method modifiers are
21716c07 148# stored by name, but there can be many methods
149# then associated with that name. So again we have
150# lots of similar functionality, so we can do some
151# meta-programmin' and save some time.
152# - SL
153
154foreach my $modifier_type (qw[ before around after ]) {
fb1e11d5 155
156 my $attr_reader = "get_${modifier_type}_method_modifiers_map";
21716c07 157
fb1e11d5 158 # create the attribute ...
159 $META->add_attribute("${modifier_type}_method_modifiers" => (
160 reader => $attr_reader,
161 default => sub { {} }
162 ));
163
164 # and some helper methods ...
21716c07 165 $META->add_method("get_${modifier_type}_method_modifiers" => sub {
166 my ($self, $method_name) = @_;
fb1e11d5 167 #return () unless exists $self->$attr_reader->{$method_name};
21716c07 168 @{$self->$attr_reader->{$method_name}};
169 });
fb1e11d5 170
21716c07 171 $META->add_method("has_${modifier_type}_method_modifiers" => sub {
172 my ($self, $method_name) = @_;
173 # NOTE:
fb1e11d5 174 # for now we assume that if it exists,..
21716c07 175 # it has at least one modifier in it
176 (exists $self->$attr_reader->{$method_name}) ? 1 : 0;
fb1e11d5 177 });
178
21716c07 179 $META->add_method("add_${modifier_type}_method_modifier" => sub {
180 my ($self, $method_name, $method) = @_;
fb1e11d5 181
182 $self->$attr_reader->{$method_name} = []
21716c07 183 unless exists $self->$attr_reader->{$method_name};
fb1e11d5 184
21716c07 185 my $modifiers = $self->$attr_reader->{$method_name};
fb1e11d5 186
21716c07 187 # NOTE:
fb1e11d5 188 # check to see that we aren't adding the
189 # same code twice. We err in favor of the
21716c07 190 # first on here, this may not be as expected
191 foreach my $modifier (@{$modifiers}) {
192 return if $modifier == $method;
193 }
fb1e11d5 194
21716c07 195 push @{$modifiers} => $method;
196 });
fb1e11d5 197
21716c07 198}
1331430a 199
21716c07 200## ------------------------------------------------------------------
201## override method mofidiers
0558683c 202
fb1e11d5 203$META->add_attribute('override_method_modifiers' => (
204 reader => 'get_override_method_modifiers_map',
205 default => sub { {} }
206));
207
21716c07 208# NOTE:
fb1e11d5 209# these are a little different because there
21716c07 210# can only be one per name, whereas the other
211# method modifiers can have multiples.
212# - SL
0558683c 213
21716c07 214sub add_override_method_modifier {
215 my ($self, $method_name, $method) = @_;
216 (!$self->has_method($method_name))
fb1e11d5 217 || confess "Cannot add an override of method '$method_name' " .
21716c07 218 "because there is a local version of '$method_name'";
fb1e11d5 219 $self->get_override_method_modifiers_map->{$method_name} = $method;
21716c07 220}
0558683c 221
21716c07 222sub has_override_method_modifier {
223 my ($self, $method_name) = @_;
224 # NOTE:
fb1e11d5 225 # for now we assume that if it exists,..
21716c07 226 # it has at least one modifier in it
fb1e11d5 227 (exists $self->get_override_method_modifiers_map->{$method_name}) ? 1 : 0;
21716c07 228}
0558683c 229
21716c07 230sub get_override_method_modifier {
231 my ($self, $method_name) = @_;
fb1e11d5 232 $self->get_override_method_modifiers_map->{$method_name};
21716c07 233}
0558683c 234
21716c07 235## general list accessor ...
80572233 236
21716c07 237sub get_method_modifier_list {
238 my ($self, $modifier_type) = @_;
fb1e11d5 239 my $accessor = "get_${modifier_type}_method_modifiers_map";
21716c07 240 keys %{$self->$accessor};
241}
e185c027 242
e4be0297 243sub reset_package_cache_flag { (shift)->{'_package_cache_flag'} = undef }
244sub update_package_cache_flag {
245 my $self = shift;
246 $self->{'_package_cache_flag'} = Class::MOP::check_package_cache_flag($self->name);
247}
248
249
250
21716c07 251## ------------------------------------------------------------------
80572233 252## subroles
253
21716c07 254__PACKAGE__->meta->add_attribute('roles' => (
255 reader => 'get_roles',
256 default => sub { [] }
257));
258
80572233 259sub add_role {
260 my ($self, $role) = @_;
261 (blessed($role) && $role->isa('Moose::Meta::Role'))
262 || confess "Roles must be instances of Moose::Meta::Role";
263 push @{$self->get_roles} => $role;
264}
265
b8aeb4dc 266sub calculate_all_roles {
267 my $self = shift;
268 my %seen;
fb1e11d5 269 grep {
270 !$seen{$_->name}++
271 } ($self, map {
272 $_->calculate_all_roles
273 } @{ $self->get_roles });
b8aeb4dc 274}
275
80572233 276sub does_role {
277 my ($self, $role_name) = @_;
278 (defined $role_name)
279 || confess "You must supply a role name to look for";
bdabd620 280 # if we are it,.. then return true
281 return 1 if $role_name eq $self->name;
282 # otherwise.. check our children
80572233 283 foreach my $role (@{$self->get_roles}) {
bdabd620 284 return 1 if $role->does_role($role_name);
80572233 285 }
286 return 0;
287}
288
21716c07 289## ------------------------------------------------------------------
fb1e11d5 290## methods
1331430a 291
21716c07 292sub method_metaclass { 'Moose::Meta::Role::Method' }
80572233 293
fb1e11d5 294sub get_method_map {
093b12c2 295 my $self = shift;
6b76efa4 296
297 my $current = Class::MOP::check_package_cache_flag($self->name);
298
299 if (defined $self->{'_package_cache_flag'} && $self->{'_package_cache_flag'} == $current) {
300 return $self->{'methods'} ||= {};
301 }
302
303 $self->{_package_cache_flag} = $current;
304
305 my $map = $self->{'methods'} ||= {};
fb1e11d5 306
307 my $role_name = $self->name;
308 my $method_metaclass = $self->method_metaclass;
309
0addec44 310 my %all_code = $self->get_all_package_symbols('CODE');
fb1e11d5 311
0addec44 312 foreach my $symbol (keys %all_code) {
313 my $code = $all_code{$symbol};
fb1e11d5 314
6b76efa4 315 next if exists $map->{$symbol} &&
316 defined $map->{$symbol} &&
317 $map->{$symbol}->body == $code;
318
fb1e11d5 319 my ($pkg, $name) = Class::MOP::get_code_info($code);
320
321 if ($pkg->can('meta')
322 # NOTE:
323 # we don't know what ->meta we are calling
324 # here, so we need to be careful cause it
325 # just might blow up at us, or just complain
326 # loudly (in the case of Curses.pm) so we
327 # just be a little overly cautious here.
328 # - SL
6b76efa4 329 && eval { no warnings; blessed($pkg->meta) } # FIXME calls meta
fb1e11d5 330 && $pkg->meta->isa('Moose::Meta::Role')) {
331 my $role = $pkg->meta->name;
332 next unless $self->does_role($role);
333 }
334 else {
2887c827 335 # NOTE:
336 # in 5.10 constant.pm the constants show up
337 # as being in the right package, but in pre-5.10
338 # they show up as constant::__ANON__ so we
339 # make an exception here to be sure that things
340 # work as expected in both.
341 # - SL
342 unless ($pkg eq 'constant' && $name eq '__ANON__') {
343 next if ($pkg || '') ne $role_name ||
344 (($name || '') ne '__ANON__' && ($pkg || '') ne $role_name);
345 }
fb1e11d5 346 }
c4538447 347
1b2aea39 348 $map->{$symbol} = $method_metaclass->wrap(
349 $code,
350 package_name => $role_name,
351 name => $name
352 );
fb1e11d5 353 }
354
355 return $map;
093b12c2 356}
357
fb1e11d5 358sub get_method {
359 my ($self, $name) = @_;
c4538447 360 $self->get_method_map->{$name};
fb1e11d5 361}
40e89659 362
fb1e11d5 363sub has_method {
364 my ($self, $name) = @_;
365 exists $self->get_method_map->{$name} ? 1 : 0
e185c027 366}
367
7d0d4928 368# FIXME this is copypasated from Class::MOP::Class
369# refactor to inherit from some common base
fb175631 370sub wrap_method_body {
371 my ( $self, %args ) = @_;
372
373 my $body = delete $args{body}; # delete is for compat
374
375 ('CODE' eq ref($body))
376 || confess "Your code block must be a CODE reference";
377
378 $self->method_metaclass->wrap( $body => (
379 package_name => $self->name,
380 %args,
381 ));
382}
383
7d0d4928 384sub add_method {
385 my ($self, $method_name, $method) = @_;
386 (defined $method_name && $method_name)
fb175631 387 || confess "You must define a method name";
7d0d4928 388
389 my $body;
390 if (blessed($method)) {
391 $body = $method->body;
392 if ($method->package_name ne $self->name &&
393 $method->name ne $method_name) {
394 warn "Hello there, got something for you."
fb175631 395 . " Method says " . $method->package_name . " " . $method->name
396 . " Class says " . $self->name . " " . $method_name;
7d0d4928 397 $method = $method->clone(
398 package_name => $self->name,
399 name => $method_name
400 ) if $method->can('clone');
401 }
402 }
403 else {
404 $body = $method;
fb175631 405 $method = $self->wrap_method_body( body => $body, name => $method_name );
7d0d4928 406 }
fb175631 407
408 $method->attach_to_class($self);
409
7d0d4928 410 $self->get_method_map->{$method_name} = $method;
411
412 my $full_method_name = ($self->name . '::' . $method_name);
413 $self->add_package_symbol(
414 { sigil => '&', type => 'CODE', name => $method_name },
415 Class::MOP::subname($full_method_name => $body)
416 );
fb175631 417
418 $self->update_package_cache_flag; # still valid, since we just added the method to the map, and if it was invalid before that then get_method_map updated it
7d0d4928 419}
420
1db8ecc7 421sub find_method_by_name { (shift)->get_method(@_) }
093b12c2 422
fb1e11d5 423sub get_method_list {
424 my $self = shift;
425 grep { !/^meta$/ } keys %{$self->get_method_map};
426}
427
428sub alias_method {
429 my ($self, $method_name, $method) = @_;
430 (defined $method_name && $method_name)
431 || confess "You must define a method name";
432
433 my $body = (blessed($method) ? $method->body : $method);
21f1e231 434 ('CODE' eq ref($body))
fb1e11d5 435 || confess "Your code block must be a CODE reference";
436
8371f6e1 437 $self->add_package_symbol(
438 { sigil => '&', type => 'CODE', name => $method_name },
439 $body
440 );
fb1e11d5 441}
442
21716c07 443## ------------------------------------------------------------------
fb1e11d5 444## role construction
21716c07 445## ------------------------------------------------------------------
e185c027 446
21716c07 447sub apply {
bca01282 448 my ($self, $other, @args) = @_;
449
450 (blessed($other))
451 || confess "You must pass in an blessed instance";
452
1c9db35c 453 if ($other->isa('Moose::Meta::Role')) {
454 require Moose::Meta::Role::Application::ToRole;
709c321c 455 return Moose::Meta::Role::Application::ToRole->new(@args)->apply($self, $other);
1c9db35c 456 }
457 elsif ($other->isa('Moose::Meta::Class')) {
458 require Moose::Meta::Role::Application::ToClass;
709c321c 459 return Moose::Meta::Role::Application::ToClass->new(@args)->apply($self, $other);
1c9db35c 460 }
461 else {
462 require Moose::Meta::Role::Application::ToInstance;
709c321c 463 return Moose::Meta::Role::Application::ToInstance->new(@args)->apply($self, $other);
1c9db35c 464 }
0558683c 465}
466
5b5187e0 467sub apply_to_metaclass_instance {
468 my ($self, $meta, @args) = @_;
469
470 $meta->isa('Moose::Meta::Class') || $meta->isa('Moose::Meta::Role')
471 || confess "You must pass in a Moose::Meta::Class or Moose::Meta::Role instance";
472
473 require Moose::Meta::Role::Application::ToMetaclassInstance;
474 return Moose::Meta::Role::Application::ToMetaclassInstance->new(@args)->apply($self, $meta);
475}
476
21716c07 477sub combine {
a4e516f6 478 my ($class, @role_specs) = @_;
21716c07 479
fb1e11d5 480 require Moose::Meta::Role::Application::RoleSummation;
a4e516f6 481 require Moose::Meta::Role::Composite;
482
28412c0b 483 my (@roles, %role_params);
484 while (@role_specs) {
485 my ($role, $params) = @{ splice @role_specs, 0, 1 };
486 push @roles => $role->meta;
487 next unless defined $params;
488 $role_params{$role} = $params;
489 }
21716c07 490
fb1e11d5 491 my $c = Moose::Meta::Role::Composite->new(roles => \@roles);
a4e516f6 492 Moose::Meta::Role::Application::RoleSummation->new(
28412c0b 493 role_params => \%role_params
a4e516f6 494 )->apply($c);
28412c0b 495
fb1e11d5 496 return $c;
0558683c 497}
498
fb1e11d5 499#####################################################################
500## NOTE:
501## This is Moose::Meta::Role as defined by Moose (plus the use of
502## MooseX::AttributeHelpers module). It is here as a reference to
503## make it easier to see what is happening above with all the meta
504## programming. - SL
505#####################################################################
506#
507# has 'roles' => (
508# metaclass => 'Collection::Array',
509# reader => 'get_roles',
510# isa => 'ArrayRef[Moose::Meta::Roles]',
511# default => sub { [] },
512# provides => {
513# 'push' => 'add_role',
514# }
515# );
516#
517# has 'excluded_roles_map' => (
518# metaclass => 'Collection::Hash',
519# reader => 'get_excluded_roles_map',
520# isa => 'HashRef[Str]',
521# provides => {
522# # Not exactly set, cause it sets multiple
523# 'set' => 'add_excluded_roles',
524# 'keys' => 'get_excluded_roles_list',
525# 'exists' => 'excludes_role',
526# }
527# );
528#
529# has 'attribute_map' => (
530# metaclass => 'Collection::Hash',
531# reader => 'get_attribute_map',
532# isa => 'HashRef[Str]',
533# provides => {
534# # 'set' => 'add_attribute' # has some special crap in it
535# 'get' => 'get_attribute',
536# 'keys' => 'get_attribute_list',
537# 'exists' => 'has_attribute',
538# # Not exactly delete, cause it sets multiple
539# 'delete' => 'remove_attribute',
540# }
541# );
542#
543# has 'required_methods' => (
544# metaclass => 'Collection::Hash',
545# reader => 'get_required_methods_map',
546# isa => 'HashRef[Str]',
547# provides => {
548# # not exactly set, or delete since it works for multiple
549# 'set' => 'add_required_methods',
550# 'delete' => 'remove_required_methods',
551# 'keys' => 'get_required_method_list',
552# 'exists' => 'requires_method',
553# }
554# );
555#
556# # the before, around and after modifiers are
557# # HASH keyed by method-name, with ARRAY of
558# # CODE refs to apply in that order
559#
560# has 'before_method_modifiers' => (
561# metaclass => 'Collection::Hash',
562# reader => 'get_before_method_modifiers_map',
563# isa => 'HashRef[ArrayRef[CodeRef]]',
564# provides => {
565# 'keys' => 'get_before_method_modifiers',
566# 'exists' => 'has_before_method_modifiers',
567# # This actually makes sure there is an
568# # ARRAY at the given key, and pushed onto
569# # it. It also checks for duplicates as well
570# # 'add' => 'add_before_method_modifier'
571# }
572# );
573#
574# has 'after_method_modifiers' => (
575# metaclass => 'Collection::Hash',
576# reader =>'get_after_method_modifiers_map',
577# isa => 'HashRef[ArrayRef[CodeRef]]',
578# provides => {
579# 'keys' => 'get_after_method_modifiers',
580# 'exists' => 'has_after_method_modifiers',
581# # This actually makes sure there is an
582# # ARRAY at the given key, and pushed onto
583# # it. It also checks for duplicates as well
584# # 'add' => 'add_after_method_modifier'
585# }
586# );
587#
588# has 'around_method_modifiers' => (
589# metaclass => 'Collection::Hash',
590# reader =>'get_around_method_modifiers_map',
591# isa => 'HashRef[ArrayRef[CodeRef]]',
592# provides => {
593# 'keys' => 'get_around_method_modifiers',
594# 'exists' => 'has_around_method_modifiers',
595# # This actually makes sure there is an
596# # ARRAY at the given key, and pushed onto
597# # it. It also checks for duplicates as well
598# # 'add' => 'add_around_method_modifier'
599# }
600# );
601#
602# # override is similar to the other modifiers
603# # except that it is not an ARRAY of code refs
604# # but instead just a single name->code mapping
605#
606# has 'override_method_modifiers' => (
607# metaclass => 'Collection::Hash',
608# reader =>'get_override_method_modifiers_map',
609# isa => 'HashRef[CodeRef]',
610# provides => {
611# 'keys' => 'get_override_method_modifier',
612# 'exists' => 'has_override_method_modifier',
613# 'add' => 'add_override_method_modifier', # checks for local method ..
614# }
615# );
616#
617#####################################################################
618
619
e185c027 6201;
621
622__END__
623
624=pod
625
626=head1 NAME
627
628Moose::Meta::Role - The Moose Role metaclass
629
630=head1 DESCRIPTION
631
fb1e11d5 632Please see L<Moose::Role> for more information about roles.
d44714be 633For the most part, this has no user-serviceable parts inside
fb1e11d5 634this module. It's API is still subject to some change (although
02a0fb52 635probably not that much really).
79592a54 636
e185c027 637=head1 METHODS
638
639=over 4
640
641=item B<meta>
642
643=item B<new>
644
78cd1d3b 645=item B<apply>
646
5b5187e0 647=item B<apply_to_metaclass_instance>
648
db1ab48d 649=item B<combine>
650
e185c027 651=back
652
653=over 4
654
655=item B<name>
656
657=item B<version>
658
659=item B<role_meta>
660
661=back
662
663=over 4
664
80572233 665=item B<get_roles>
666
667=item B<add_role>
668
669=item B<does_role>
670
671=back
672
673=over 4
674
d79e62fd 675=item B<add_excluded_roles>
676
677=item B<excludes_role>
678
679=item B<get_excluded_roles_list>
680
681=item B<get_excluded_roles_map>
682
2b14ac61 683=item B<calculate_all_roles>
684
d79e62fd 685=back
686
687=over 4
688
68efb014 689=item B<method_metaclass>
690
be4427d0 691=item B<find_method_by_name>
692
e185c027 693=item B<get_method>
694
695=item B<has_method>
696
7d0d4928 697=item B<add_method>
698
fb175631 699=item B<wrap_method_body>
700
bdabd620 701=item B<alias_method>
702
e185c027 703=item B<get_method_list>
704
093b12c2 705=item B<get_method_map>
706
638853cb 707=item B<update_package_cache_flag>
708
53dd42d8 709=item B<reset_package_cache_flag>
710
e185c027 711=back
712
713=over 4
714
715=item B<add_attribute>
716
717=item B<has_attribute>
718
719=item B<get_attribute>
720
721=item B<get_attribute_list>
722
723=item B<get_attribute_map>
724
725=item B<remove_attribute>
726
727=back
728
729=over 4
730
1331430a 731=item B<add_required_methods>
732
38f1204c 733=item B<remove_required_methods>
734
1331430a 735=item B<get_required_method_list>
736
737=item B<get_required_methods_map>
738
739=item B<requires_method>
740
741=back
742
0558683c 743=over 4
744
745=item B<add_after_method_modifier>
746
747=item B<add_around_method_modifier>
748
749=item B<add_before_method_modifier>
750
751=item B<add_override_method_modifier>
752
753=over 4
754
755=back
756
757=item B<has_after_method_modifiers>
758
759=item B<has_around_method_modifiers>
760
761=item B<has_before_method_modifiers>
762
763=item B<has_override_method_modifier>
764
765=over 4
766
767=back
768
769=item B<get_after_method_modifiers>
770
771=item B<get_around_method_modifiers>
772
773=item B<get_before_method_modifiers>
774
775=item B<get_method_modifier_list>
776
777=over 4
778
779=back
780
781=item B<get_override_method_modifier>
782
783=item B<get_after_method_modifiers_map>
784
785=item B<get_around_method_modifiers_map>
786
787=item B<get_before_method_modifiers_map>
788
789=item B<get_override_method_modifiers_map>
790
791=back
792
e185c027 793=head1 BUGS
794
fb1e11d5 795All complex software has bugs lurking in it, and this module is no
e185c027 796exception. If you find a bug please either email me, or add the bug
797to cpan-RT.
798
799=head1 AUTHOR
800
801Stevan Little E<lt>stevan@iinteractive.comE<gt>
802
803=head1 COPYRIGHT AND LICENSE
804
778db3ac 805Copyright 2006-2008 by Infinity Interactive, Inc.
e185c027 806
807L<http://www.iinteractive.com>
808
809This library is free software; you can redistribute it and/or modify
fb1e11d5 810it under the same terms as Perl itself.
e185c027 811
b8aeb4dc 812=cut