X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMooseX%2FStrictConstructor%2FMeta%2FMethod%2FConstructor.pm;h=970bd9c9e8f6a6e2514cb2057d750c8534510f00;hb=02f0d8486d0e8848370b0b850f49b5ce945d9edc;hp=f72fa66b3fe06fc73e2a7cdb54cad08c9f9675f0;hpb=5c3f24ed7e5aa011dd3d356bf9fcb076fd970a75;p=gitmo%2FMooseX-StrictConstructor.git diff --git a/lib/MooseX/StrictConstructor/Meta/Method/Constructor.pm b/lib/MooseX/StrictConstructor/Meta/Method/Constructor.pm index f72fa66..970bd9c 100644 --- a/lib/MooseX/StrictConstructor/Meta/Method/Constructor.pm +++ b/lib/MooseX/StrictConstructor/Meta/Method/Constructor.pm @@ -8,12 +8,11 @@ use Moose; extends 'Moose::Meta::Method::Constructor'; -# using -sub _generate_BUILDALL ## no critic RequireArgUnpacking +override '_generate_BUILDALL' => sub ## no critic RequireArgUnpacking { my $self = shift; - my $source = $self->SUPER::_generate_BUILDALL(@_); + my $source = super(); $source .= ";\n" if $source; my @attrs = map { $_->name() . ' => 1,' } @{ $self->attributes() }; @@ -31,5 +30,41 @@ 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 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<< >> + +=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 +