Beginning of dzilization
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Code / execute.pm
CommitLineData
fc6ef638 1package Moose::Meta::Method::Accessor::Native::Code::execute;
2
3use strict;
4use warnings;
5
fc6ef638 6our $AUTHORITY = 'cpan:STEVAN';
7
8b9641b8 8use Moose::Role;
fc6ef638 9
8b9641b8 10with 'Moose::Meta::Method::Accessor::Native::Reader';
fc6ef638 11
12sub _return_value {
53a4677c 13 my $self = shift;
14 my ($slot_access) = @_;
fc6ef638 15
53a4677c 16 return $slot_access . '->(@_)';
fc6ef638 17}
18
8b9641b8 19no Moose::Role;
20
fc6ef638 211;