This commit is contained in:
24
CPAN/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm
Normal file
24
CPAN/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm
Normal file
@@ -0,0 +1,24 @@
|
||||
package Moose::Meta::Method::Accessor::Native::Counter::Writer;
|
||||
our $VERSION = '2.2207';
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Moose::Role;
|
||||
|
||||
with 'Moose::Meta::Method::Accessor::Native::Writer';
|
||||
|
||||
sub _constraint_must_be_checked {
|
||||
my $self = shift;
|
||||
|
||||
my $attr = $self->associated_attribute;
|
||||
|
||||
return $attr->has_type_constraint
|
||||
&& ($attr->type_constraint->name =~ /^(?:Num|Int)$/
|
||||
|| ($attr->should_coerce && $attr->type_constraint->has_coercion)
|
||||
);
|
||||
}
|
||||
|
||||
no Moose::Role;
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user