Bump version to 1.9900 for new version numbering scheme
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Code / execute_method.pm
CommitLineData
fc6ef638 1package Moose::Meta::Method::Accessor::Native::Code::execute_method;
2
3use strict;
4use warnings;
5
bb8ef151 6our $VERSION = '1.9900';
fc6ef638 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
fc6ef638 11
8b9641b8 12with 'Moose::Meta::Method::Accessor::Native::Reader';
fc6ef638 13
14sub _return_value {
53a4677c 15 my $self = shift;
16 my ($slot_access) = @_;
fc6ef638 17
53a4677c 18 return $slot_access . '->($self, @_)';
fc6ef638 19}
20
8b9641b8 21no Moose::Role;
22
fc6ef638 231;