X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FMethod%2FConstructor.pm;h=939589221aac157038d8389a44a108de91a1842a;hb=4c1053331a179a6d1dd8e71d49ef05852a81387e;hp=1f5cae0a43f0efe4414c979ca8433e76af00fedd;hpb=8d2d4c6705a3781606464d003a3641d835a35815;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Method/Constructor.pm b/lib/Class/MOP/Method/Constructor.pm index 1f5cae0..9395892 100644 --- a/lib/Class/MOP/Method/Constructor.pm +++ b/lib/Class/MOP/Method/Constructor.pm @@ -7,7 +7,7 @@ use warnings; use Carp 'confess'; use Scalar::Util 'blessed', 'weaken', 'looks_like_number'; -our $VERSION = '0.02'; +our $VERSION = '0.04'; our $AUTHORITY = 'cpan:STEVAN'; use base 'Class::MOP::Method::Generated'; @@ -22,7 +22,9 @@ sub new { my $self = bless { # from our superclass - '&!body' => undef, + '&!body' => undef, + '$!package_name' => $options{package_name}, + '$!name' => $options{name}, # specific to this subclass '%!options' => $options{options} || {}, '$!associated_metaclass' => $options{metaclass}, @@ -68,7 +70,7 @@ sub initialize_body { } sub generate_constructor_method { - return sub { (shift)->meta->new_object(@_) } + return sub { Class::MOP::Class->initialize(shift)->new_object(@_) } } sub generate_constructor_method_inline { @@ -77,7 +79,7 @@ sub generate_constructor_method_inline { my $source = 'sub {'; $source .= "\n" . 'my ($class, %params) = @_;'; - $source .= "\n" . 'return $class->meta->new_object(%params)'; + $source .= "\n" . 'return Class::MOP::Class->initialize($class)->new_object(%params)'; $source .= "\n" . ' if $class ne \'' . $self->associated_metaclass->name . '\';'; $source .= "\n" . 'my $instance = ' . $self->meta_instance->inline_create_instance('$class'); @@ -129,17 +131,28 @@ sub _generate_slot_initializer { $default = '$instance->'.$attr->builder; } - 'if(exists $params{\'' . $attr->init_arg . '\'}){' . "\n" . - $self->meta_instance->inline_set_slot_value( - '$instance', - ("'" . $attr->name . "'"), - '$params{\'' . $attr->init_arg . '\'}' ) . "\n" . - '} ' . (!defined $default ? '' : 'else {' . "\n" . - $self->meta_instance->inline_set_slot_value( - '$instance', - ("'" . $attr->name . "'"), - $default ) . "\n" . - '}'); + if ( defined $attr->init_arg ) { + return ( + 'if(exists $params{\'' . $attr->init_arg . '\'}){' . "\n" . + $self->meta_instance->inline_set_slot_value( + '$instance', + ("'" . $attr->name . "'"), + '$params{\'' . $attr->init_arg . '\'}' ) . "\n" . + '} ' . (!defined $default ? '' : 'else {' . "\n" . + $self->meta_instance->inline_set_slot_value( + '$instance', + ("'" . $attr->name . "'"), + $default ) . "\n" . + '}') + ); + } elsif ( defined $default ) { + return ( + $self->meta_instance->inline_set_slot_value( + '$instance', + ("'" . $attr->name . "'"), + $default ) . "\n" + ); + } else { return '' } } 1; @@ -171,7 +184,8 @@ Class::MOP::Method::Constructor - Method Meta Object for constructors =head1 DESCRIPTION This is a subclass of C which deals with -class constructors. +class constructors. This is used when making a class immutable +to generate an optimized constructor. =head1 METHODS @@ -208,7 +222,7 @@ This creates the code reference for the constructor itself. =back -=head2 Method Generators +=head2 Method Generators =over 4 @@ -224,7 +238,7 @@ Stevan Little Estevan@iinteractive.comE =head1 COPYRIGHT AND LICENSE -Copyright 2006, 2007 by Infinity Interactive, Inc. +Copyright 2006-2008 by Infinity Interactive, Inc. L