X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FMethod%2FAccessor.pm;h=7858cdb7e14d8354ebd2e3d2269147a24a1e321e;hb=5d10c516c73e34da6e350bc567aaf8c272428c9b;hp=69228ac37b27a2e63aecd1ae5d6420de56b25504;hpb=9457b59678c67b47f31e82d284ed57c10d7fc091;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Method/Accessor.pm b/lib/Class/MOP/Method/Accessor.pm index 69228ac..7858cdb 100644 --- a/lib/Class/MOP/Method/Accessor.pm +++ b/lib/Class/MOP/Method/Accessor.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken'; -our $VERSION = '0.64_06'; +our $VERSION = '0.76'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -114,41 +114,54 @@ sub generate_clearer_method { sub generate_accessor_method_inline { - my $attr = (shift)->associated_attribute; + my $self = shift; + my $attr = $self->associated_attribute; my $attr_name = $attr->name; my $meta_instance = $attr->associated_class->instance_metaclass; - my $code = eval 'sub {' - . $meta_instance->inline_set_slot_value('$_[0]', "'$attr_name'", '$_[1]') . ' if scalar(@_) == 2; ' + my $code = $self->_eval_closure( + {}, + 'sub {' + . $meta_instance->inline_set_slot_value('$_[0]', "'$attr_name'", '$_[1]') + . ' if scalar(@_) == 2; ' . $meta_instance->inline_get_slot_value('$_[0]', "'$attr_name'") - . '}'; + . '}' + ); confess "Could not generate inline accessor because : $@" if $@; return $code; } sub generate_reader_method_inline { - my $attr = (shift)->associated_attribute; + my $self = shift; + my $attr = $self->associated_attribute; my $attr_name = $attr->name; my $meta_instance = $attr->associated_class->instance_metaclass; - my $code = eval 'sub {' + my $code = $self->_eval_closure( + {}, + 'sub {' . 'confess "Cannot assign a value to a read-only accessor" if @_ > 1;' . $meta_instance->inline_get_slot_value('$_[0]', "'$attr_name'") - . '}'; + . '}' + ); confess "Could not generate inline accessor because : $@" if $@; return $code; } sub generate_writer_method_inline { - my $attr = (shift)->associated_attribute; + my $self = shift; + my $attr = $self->associated_attribute; my $attr_name = $attr->name; my $meta_instance = $attr->associated_class->instance_metaclass; - my $code = eval 'sub {' + my $code = $self->_eval_closure( + {}, + 'sub {' . $meta_instance->inline_set_slot_value('$_[0]', "'$attr_name'", '$_[1]') - . '}'; + . '}' + ); confess "Could not generate inline accessor because : $@" if $@; return $code; @@ -156,26 +169,34 @@ sub generate_writer_method_inline { sub generate_predicate_method_inline { - my $attr = (shift)->associated_attribute; + my $self = shift; + my $attr = $self->associated_attribute; my $attr_name = $attr->name; my $meta_instance = $attr->associated_class->instance_metaclass; - my $code = eval 'sub {' . - $meta_instance->inline_is_slot_initialized('$_[0]', "'$attr_name'") - . '}'; + my $code = $self->_eval_closure( + {}, + 'sub {' + . $meta_instance->inline_is_slot_initialized('$_[0]', "'$attr_name'") + . '}' + ); confess "Could not generate inline predicate because : $@" if $@; return $code; } sub generate_clearer_method_inline { - my $attr = (shift)->associated_attribute; + my $self = shift; + my $attr = $self->associated_attribute; my $attr_name = $attr->name; my $meta_instance = $attr->associated_class->instance_metaclass; - my $code = eval 'sub {' + my $code = $self->_eval_closure( + {}, + 'sub {' . $meta_instance->inline_deinitialize_slot('$_[0]', "'$attr_name'") - . '}'; + . '}' + ); confess "Could not generate inline clearer because : $@" if $@; return $code; @@ -201,7 +222,7 @@ Class::MOP::Method::Accessor - Method Meta Object for accessors accessor_type => 'reader', ); - $reader->body->($instance); # call the reader method + $reader->body->execute($instance); # call the reader method =head1 DESCRIPTION