immutable itself. We will never construct an object (we just rebless),
so there's no constructor to inline, and it's relatively uncommon to
need to introspect the new class.
my $meta = $self->initialize($class_name);
$meta->superclasses(@super);
- $meta->make_immutable;
-
return $class_name;
}
}