don't try and apply modifiers during role composition
Matt S Trout [Sat, 13 Nov 2010 22:24:17 +0000 (22:24 +0000)]
lib/Moo.pm
lib/Moo/Role.pm
lib/Moo/_Utils.pm
lib/Role/Tiny.pm
t/moo.t

index fdaec57..2f27387 100644 (file)
@@ -33,6 +33,7 @@ sub import {
   };
   foreach my $type (qw(before after around)) {
     *{_getglob "${target}::${type}"} = sub {
+      require Class::Method::Modifiers;
       _install_modifier($target, $type, @_);
     };
   }
index 48a3bb0..7a7cae1 100644 (file)
@@ -51,11 +51,9 @@ sub create_class_with_roles {
   return $new_name;
 }
 
-sub _install_modifiers {
-  my ($me, $to, $modifiers) = @_;
-  foreach my $modifier (@{$modifiers||[]}) {
-    _install_modifier($to, @{$modifier});
-  }
+sub _install_single_modifier {
+  my ($me, @args) = @_;
+  _install_modifier(@args);
 }
 
 sub _handle_constructor {
index ad0b5b1..6bf8f22 100644 (file)
@@ -9,12 +9,12 @@ sub _getglob { no strict 'refs'; \*{$_[0]} }
 
 sub _install_modifier {
   my ($into, $type, $name, $code) = @_;
-  my $ref = ref(my $to_modify = $into->can($name));
 
-  require Sub::Defer;
-  Sub::Defer::undefer_sub($to_modify);
+  if (my $to_modify = $into->can($name)) { # CMM will throw for us if not
+    require Sub::Defer;
+    Sub::Defer::undefer_sub($to_modify);
+  }
 
-  require Class::Method::Modifiers;
   Class::Method::Modifiers::install_modifier(@_);
 }
 
index 1a4cf9c..bcaa374 100644 (file)
@@ -200,11 +200,20 @@ sub _install_methods {
 
 sub _install_modifiers {
   my ($me, $to, $modifiers) = @_;
-  foreach my $modifier (@{$modifiers||[]}) {
-    Class::Method::Modifiers::install_modifier($to, @{$modifier});
+  if (my $info = $INFO{$to}) {
+    push @{$info->{modifiers}}, @{$modifiers||[]};
+  } else {
+    foreach my $modifier (@{$modifiers||[]}) {
+      $me->_install_single_modifier($to, @$modifier);
+    }
   }
 }
 
+sub _install_single_modifier {
+  my ($me, @args) = @_;
+  Class::Method::Modifiers::install_modifier(@args);
+}
+
 sub does_role {
   my ($package, $role) = @_;
   return exists $APPLIED_TO{$package}{$role};
diff --git a/t/moo.t b/t/moo.t
index 4656944..2ba2a00 100644 (file)
--- a/t/moo.t
+++ b/t/moo.t
@@ -49,6 +49,8 @@ is_deeply(
   [ @MyClass3::ISA ], [ 'MyClass2' ], 'extends sets superclass'
 );
 
+{ package WhatTheFlyingFornication; sub wtff {} }
+
 {
   package MyClass4;