return Class::MOP::get_metaclass_by_name($name) if $DID_INJECT{$name};
require Moose; require Moo; require Moo::Role;
Class::MOP::remove_metaclass_by_name($name);
- my ($am_role, $meta, $attr_specs) = do {
+ my ($am_role, $meta, $attr_specs, $attr_order) = do {
if (my $info = $Moo::Role::INFO{$name}) {
- (1, Moose::Meta::Role->initialize($name), $info->{attributes})
+ my @attr_info = @{$info->{attributes}||[]};
+ (1, Moose::Meta::Role->initialize($name),
+ { @attr_info },
+ [ @attr_info[grep !($_ % 2), 0..$#attr_info] ]
+ )
} else {
my $specs = Moo->_constructor_maker_for($name)->all_attribute_specs;
- (0, Moose::Meta::Class->initialize($name), $specs);
+ (0, Moose::Meta::Class->initialize($name), $specs,
+ [ sort { $specs->{$a}{index} <=> $specs->{$b}{index} } keys %$specs ]
+ );
}
};
my %methods = %{Role::Tiny->_concrete_methods_of($name)};
{
# This local is completely not required for roles but harmless
local @{_getstash($name)}{keys %methods};
- foreach my $name (keys %$attr_specs) {
+ foreach my $name (@$attr_order) {
my %spec = %{$attr_specs->{$name}};
delete $spec{index};
$spec{is} = 'ro' if $spec{is} eq 'lazy' or $spec{is} eq 'rwp';
require Method::Generate::Accessor;
Method::Generate::Accessor->new
})->generate_method($target, $name, \%spec);
- $INFO{$target}{attributes}{$name} = \%spec;
+ push @{$INFO{$target}{attributes}||=[]}, $name, \%spec;
};
if ($INC{'Moo/HandleMoose.pm'}) {
Moo::HandleMoose::inject_fake_metaclass_for($target);
map +($_->name => 1), $meta->calculate_all_roles
};
$INFO{$role}{requires} = [ $meta->get_required_method_list ];
- $INFO{$role}{attributes} = {
+ $INFO{$role}{attributes} = [
map +($_ => $meta->get_attribute($_)), $meta->get_attribute_list
- };
+ ];
my $mods = $INFO{$role}{modifiers} = [];
foreach my $type (qw(before after around)) {
my $map = $meta->${\"get_${type}_method_modifiers_map"};
sub _make_accessors_if_moose {
my ($self, $role, $target) = @_;
if ($INFO{$role}{inhaled_from_moose}) {
- if (my $attrs = $INFO{$role}{attributes}) {
+ if (my @attrs = @{$INFO{$role}{attributes}||[]}) {
my $acc_gen = ($Moo::MAKERS{$target}{accessor} ||= do {
require Method::Generate::Accessor;
Method::Generate::Accessor->new
});
- foreach my $name (keys %{$attrs}) {
- $acc_gen->generate_method($target, $name, $attrs->{$name});
+ while (my ($name, $spec) = splice @attrs, 0, 2) {
+ $acc_gen->generate_method($target, $name, $spec);
}
}
}
$Moo::MAKERS{$new_name} = {};
$me->_handle_constructor(
- $new_name, { map %{$INFO{$_}{attributes}||{}}, @roles }, $superclass
+ $new_name, [ map @{$INFO{$_}{attributes}||{}}, @roles ], $superclass
);
return $new_name;
sub _handle_constructor {
my ($me, $to, $attr_info, $superclass) = @_;
- return unless $attr_info && keys %$attr_info;
+ return unless $attr_info && @$attr_info;
if ($INFO{$to}) {
- @{$INFO{$to}{attributes}||={}}{keys %$attr_info} = values %$attr_info;
+ 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)) {
- $con->register_attribute_specs(%$attr_info);
+ $con->register_attribute_specs(map ref() ? { %$_ } : $_, @$attr_info);
}
}
}