make native trait inlining work
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Bool / not.pm
CommitLineData
664e417b 1package Moose::Meta::Method::Accessor::Native::Bool::not;
2
3use strict;
4use warnings;
5
245478d5 6our $VERSION = '1.19';
664e417b 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Reader' =>
13 { -excludes => ['_maximum_arguments'] };
664e417b 14
664e417b 15sub _maximum_arguments { 0 }
16
17sub _return_value {
53a4677c 18 my $self = shift;
19 my ($slot_access) = @_;
664e417b 20
53a4677c 21 return '!' . $slot_access;
664e417b 22}
23
241;