bump version to 1.25
[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
0c3879e8 6our $VERSION = '1.25';
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 {
15 my ( $self, $slot_access ) = @_;
16
17 return "${slot_access}->(\$self, \@_)";
18}
19
8b9641b8 20no Moose::Role;
21
fc6ef638 221;