Add support for adding method modifiers to a role metaclass
[gitmo/Mouse.git] / lib / Mouse / Meta / Role.pm
index 0c04b74..79f3b7f 100644 (file)
@@ -58,6 +58,13 @@ sub apply {
 
 for my $modifier_type (qw/before after around/) {
     no strict 'refs';
+    *{ __PACKAGE__ . '::' . "add_${modifier_type}_method_modifier" } = sub {
+        my ($self, $method_name, $method) = @_;
+
+        push @{ $self->{"${modifier_type}_method_modifiers"}->{$method_name} },
+            $method;
+    };
+
     *{ __PACKAGE__ . '::' . "get_${modifier_type}_method_modifiers" } = sub {
         my ($self, $method_name, $method) = @_;
         @{ $self->{"${modifier_type}_method_modifiers"}->{$method_name} || [] }