1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
package MooseX::StrictConstructor::Meta::Method::Constructor;
use strict;
use warnings;
use Carp ();
use Moose;
extends 'Moose::Meta::Method::Constructor';
override '_generate_BUILDALL' => sub ## no critic RequireArgUnpacking
{
my $self = shift;
my $source = super();
$source .= ";\n" if $source;
my @attrs =
( map { "$_ => 1," }
grep { defined }
map { $_->init_arg() }
@{ $self->attributes() }
);
$source .= <<"EOF";
my \%attrs = (@attrs);
my \@bad = sort grep { ! \$attrs{\$_} } keys \%{ \$params };
if (\@bad) {
Carp::confess "Found unknown attribute(s) passed to the constructor: \@bad";
}
EOF
return $source;
};
no Moose;
1;
__END__
=pod
=head1 NAME
MooseX::StrictConstructor::Meta::Method::Constructor - A meta class to make immutable constructors strict
=head1 SYNOPSIS
use MooseX::StrictConstructor;
=head1 DESCRIPTION
This class simply overrides C<_generate_BUILDALL()> in
C<Moose::Meta::Method::Constructor> so that classes that are made
immutable have a strict constructor.
You should never have to use this class directly.
=head1 AUTHOR
Dave Rolsky, C<< <autarch@urth.org> >>
=head1 COPYRIGHT & LICENSE
Copyright 2007 Dave Rolsky, All Rights Reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|