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