no reason for member_type to build lazily, it should be required
[catagits/Reaction.git] / lib / Reaction / Meta / Class.pm
CommitLineData
7adfd53f 1package Reaction::Meta::Class;
2
3use Moose;
4use Reaction::Meta::Attribute;
5
6extends 'Moose::Meta::Class';
7
6a00914b 8sub new { shift->SUPER::new(@_); }
9
7adfd53f 10around initialize => sub {
11 my $super = shift;
12 my $class = shift;
13 my $pkg = shift;
14 $super->($class, $pkg, 'attribute_metaclass' => 'Reaction::Meta::Attribute', @_ );
15};
16
a5200252 17
18__PACKAGE__->meta->make_immutable;
19
7adfd53f 201;