Move the eval_environment wrapper to the Class trait from Constructor
[gitmo/MooseX-StrictConstructor.git] / lib / MooseX / StrictConstructor / Trait / Method / Constructor.pm
CommitLineData
1a4f7732 1package MooseX::StrictConstructor::Trait::Method::Constructor;
c8a39fc4 2
d99e6f32 3use Moose::Role;
4
5use namespace::autoclean;
c8a39fc4 6
7use B ();
c8a39fc4 8
0b60c40b 9around _generate_BUILDALL => sub {
c8a39fc4 10 my $orig = shift;
11 my $self = shift;
12
13 my $source = $self->$orig();
14 $source .= ";\n" if $source;
15
0b60c40b 16 my @attrs = '__INSTANCE__ => 1,';
17 push @attrs, map { B::perlstring($_) . ' => 1,' }
18 grep { defined }
19 map { $_->init_arg() } @{ $self->_attributes() };
20
c8a39fc4 21 $source .= <<"EOF";
22my \%attrs = (@attrs);
23
24my \@bad = sort grep { ! \$attrs{\$_} } keys \%{ \$params };
25
26if (\@bad) {
714128ef 27 Moose->throw_error("Found unknown attribute(s) passed to the constructor: \@bad");
c8a39fc4 28}
29EOF
30
31 return $source;
bb64c045 32} if $Moose::VERSION < 1.9900;
33
c8a39fc4 341;
35
36# ABSTRACT: A role to make immutable constructors strict
37
38__END__
39
40=pod
41
c8a39fc4 42=head1 DESCRIPTION
43
44This role simply wraps C<_generate_BUILDALL()> (from
45C<Moose::Meta::Method::Constructor>) so that immutable classes have a
46strict constructor.
47
48=cut
49