X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMouse%2FMeta%2FRole.pm;h=07203c376c51c7e394e4aede792a8b2433c8d940;hb=fdec46ff3fe73d4026211a06966d9320b222ea26;hp=79f3b7fc697070fb99d277a3a06a69d4ce6251f7;hpb=fc0e0bbda277a99354170a4b8de6eb1275920555;p=gitmo%2FMouse.git diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index 79f3b7f..07203c3 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -54,6 +54,17 @@ sub apply { my $spec = $self->get_attribute($name); Mouse::Meta::Attribute->create($class, $name, %$spec); } + + for my $modifier_type (qw/before after around/) { + my $add_method = "add_${modifier_type}_method_modifier"; + my $modified = $self->{"${modifier_type}_method_modifiers"}; + + for my $method_name (keys %$modified) { + for my $code (@{ $modified->{$method_name} }) { + $class->$add_method($method_name => $code); + } + } + } } for my $modifier_type (qw/before after around/) {