summaryrefslogtreecommitdiffstats
path: root/lib/MooseX/NonMoose/Meta/Role/Constructor.pm
blob: d2efff1a257a3bfffb0378ad2171be3813144e25 (plain) (blame)
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
package MooseX::NonMoose::Meta::Role::Constructor;
use Moose::Role;

around can_be_inlined => sub {
    my $orig = shift;
    my $self = shift;

    my $meta = $self->associated_metaclass;
    my $super_new = $meta->find_method_by_name($self->name);
    # XXX is this even the right test?
    if (!$super_new->associated_metaclass->isa($self->_expected_constructor_class)) {
        return 1;
    }

    return $self->$orig(@_);
};

sub _generate_instance {
    my $self = shift;
    my ($var, $class_var) = @_;
    my $new = $self->name;
    my $super_new_class = $self->associated_metaclass->find_next_method_by_name($new)->package_name;
    "my $var = bless $super_new_class->$new(\@_), $class_var;\n";
}

no Moose::Role;

1;