}
sub _constructor_maker_for {
- my ($class, $target, $select_super) = @_;
+ my ($class, $target) = @_;
return unless $MAKERS{$target};
$MAKERS{$target}{constructor} ||= do {
require Method::Generate::Constructor;
require Sub::Defer;
my ($moo_constructor, $con);
- if ($select_super && $MAKERS{$select_super}) {
- $moo_constructor = 1;
- $con = $MAKERS{$select_super}{constructor};
- } else {
- my $t_new = $target->can('new');
- if ($t_new) {
- if ($t_new == Moo::Object->can('new')) {
+ my $t_new = $target->can('new');
+ if ($t_new) {
+ if ($t_new == Moo::Object->can('new')) {
+ $moo_constructor = 1;
+ } elsif (my $defer_target = (Sub::Defer::defer_info($t_new)||[])->[0]) {
+ my ($pkg) = ($defer_target =~ /^(.*)::[^:]+$/);
+ if ($MAKERS{$pkg}) {
$moo_constructor = 1;
- } elsif (my $defer_target = (Sub::Defer::defer_info($t_new)||[])->[0]) {
- my ($pkg) = ($defer_target =~ /^(.*)::[^:]+$/);
- if ($MAKERS{$pkg}) {
- $moo_constructor = 1;
- $con = $MAKERS{$pkg}{constructor};
- }
+ $con = $MAKERS{$pkg}{constructor};
}
- } else {
- $moo_constructor = 1; # no other constructor, make a Moo one
}
- };
+ } else {
+ $moo_constructor = 1; # no other constructor, make a Moo one
+ }
($con ? ref($con) : 'Method::Generate::Constructor')
->new(
package => $target,
$Moo::MAKERS{$new_name} = {};
$me->_handle_constructor(
- $new_name, [ map @{$INFO{$_}{attributes}||[]}, @roles ], $superclass
+ $new_name, [ map @{$INFO{$_}{attributes}||[]}, @roles ]
);
return $new_name;
}
sub _handle_constructor {
- my ($me, $to, $attr_info, $superclass) = @_;
+ my ($me, $to, $attr_info) = @_;
return unless $attr_info && @$attr_info;
if ($INFO{$to}) {
push @{$INFO{$to}{attributes}||=[]}, @$attr_info;
} else {
# only fiddle with the constructor if the target is a Moo class
if ($INC{"Moo.pm"}
- and my $con = Moo->_constructor_maker_for($to, $superclass)) {
+ and my $con = Moo->_constructor_maker_for($to)) {
# shallow copy of the specs since the constructor will assign an index
$con->register_attribute_specs(map ref() ? { %$_ } : $_, @$attr_info);
}