Continue to inherit from Moose::Meta::Method for now
Dave Rolsky [Fri, 2 Sep 2011 18:06:52 +0000 (13:06 -0500)]
MMM is empty, but some code might check that a method
->isa('Moose::Meta::Mehod'). This will all be resolved when we push everything
back down to Moose.

lib/Moose/Meta/Method/Accessor.pm

index 2e69cd6..fecb856 100644 (file)
@@ -4,7 +4,7 @@ package Moose::Meta::Method::Accessor;
 use strict;
 use warnings;
 
-use base 'Class::MOP::Method::Accessor';
+use base 'Class::MOP::Method::Accessor', 'Moose::Meta::Method';
 
 1;