use Class::MOP::Method::Wrapped;
use Class::MOP::Method::Accessor;
use Class::MOP::Method::Constructor;
-use Class::MOP::Method::Meta;
use Class::MOP::MiniTrait;
use Carp 'confess';
: ref $self;
}
-sub _meta_method_class { 'Class::MOP::Method::Meta' }
-
-sub _add_meta_method {
- my $self = shift;
- my $existing_method = $self->find_method_by_name('meta');
- return if $existing_method
- && $existing_method->isa($self->_meta_method_class);
- $self->add_method(
- 'meta' => $self->_meta_method_class->wrap(
- name => 'meta',
- package_name => $self->name,
- associated_metaclass => $self,
- )
- );
-}
-
sub _new {
my $class = shift;
use strict;
use warnings;
+use Class::MOP::Method::Meta;
+
our $VERSION = '1.09';
$VERSION = eval $VERSION;
our $AUTHORITY = 'cpan:STEVAN';
sub method_metaclass { $_[0]->{'method_metaclass'} }
sub wrapped_method_metaclass { $_[0]->{'wrapped_method_metaclass'} }
+sub _meta_method_class { 'Class::MOP::Method::Meta' }
+
+sub _add_meta_method {
+ my $self = shift;
+ my $existing_method = $self->can('find_method_by_name')
+ ? $self->find_method_by_name('meta')
+ : $self->get_method('meta');
+ return if $existing_method
+ && $existing_method->isa($self->_meta_method_class);
+ $self->add_method(
+ 'meta' => $self->_meta_method_class->wrap(
+ name => 'meta',
+ package_name => $self->name,
+ associated_metaclass => $self,
+ )
+ );
+}
# This doesn't always get initialized in a constructor because there is a
# weird object construction path for subclasses of Class::MOP::Class. At one
find_method_by_name find_all_methods_by_name find_next_method_by_name
add_before_method_modifier add_after_method_modifier add_around_method_modifier
- _add_meta_method _meta_method_class
_attach_attribute
_post_add_attribute