immutable constructor for method
[gitmo/Class-MOP.git] / lib / Class / MOP.pm
index c56f63d..46a7e2c 100644 (file)
@@ -516,25 +516,6 @@ Class::MOP::Method->meta->add_attribute(
     ))
 );
 
-# FIMXE prime candidate for immutablization
-Class::MOP::Method->meta->add_method('wrap' => sub {
-    my ( $class, @args ) = @_;
-
-    unshift @args, 'body' if @args % 2 == 1;
-
-    my %options = @args;
-    my $code = $options{body};
-
-    ('CODE' eq ref($code))
-        || confess "You must supply a CODE reference to bless, not (" . ($code || 'undef') . ")";
-
-    ($options{package_name} && $options{name})
-        || confess "You must supply the package_name and name parameters";
-
-    # return the new object
-    $class->meta->new_object(%options);
-});
-
 Class::MOP::Method->meta->add_method('clone' => sub {
     my $self  = shift;
     $self->meta->clone_object($self, @_);
@@ -733,8 +714,13 @@ undef Class::MOP::Instance->meta->{_package_cache_flag};
 # no actual benefits.
 
 $_->meta->make_immutable(
-    inline_constructor => 0,
-    inline_accessors   => 0,
+    ( $_->can("_new") ? (
+        inline_constructor => 1,
+        constructor_name   => "_new",
+    ) : (
+        inline_constructor => 0,
+    ) ),
+    inline_accessors => 0,
 ) for qw/
     Class::MOP::Package
     Class::MOP::Module