? sub () { 0 }
: sub () { 1 };
+ *DEBUG_NO_META = ($ENV{DEBUG_NO_META})
+ ? sub () { 1 }
+ : sub () { 0 };
+
# this is either part of core or set up appropriately by MRO::Compat
*check_package_cache_flag = \&mro::get_pkg_gen;
}
# FIXME totally lame
$meta->add_method('meta' => sub {
+ if (Class::MOP::DEBUG_NO_META()) {
+ my ($self) = @_;
+ if (my $meta = try { $self->SUPER::meta }) {
+ return $meta if $meta->isa('Class::MOP::Class');
+ }
+ confess "'meta' method called by MOP internals"
+ if caller =~ /Class::MOP|metaclass/;
+ }
$class->initialize(ref($_[0]) || $_[0]);
});
use Carp 'confess';
use Scalar::Util 'blessed';
+use Try::Tiny;
our $VERSION = '1.08';
$VERSION = eval $VERSION;
# since metaclass instances are
# singletons, this is not really a
# big deal anyway.
+ if (Class::MOP::DEBUG_NO_META()) {
+ my ($self) = @_;
+ if (my $meta = try { $self->SUPER::meta }) {
+ return $meta if $meta->isa('Class::MOP::Class');
+ }
+ confess "'meta' method called by MOP internals"
+ if caller =~ /Class::MOP|metaclass/;
+ }
$metaclass->initialize((blessed($_[0]) || $_[0]) => %options)
}) if $should_install;
}
plan tests => scalar @modules;
my %trustme = (
- 'Class::MOP' => [ 'HAVE_ISAREV', 'subname', 'in_global_destruction' ],
+ 'Class::MOP' => [
+ 'DEBUG_NO_META',
+ 'HAVE_ISAREV',
+ 'subname',
+ 'in_global_destruction',
+ ],
'Class::MOP::Attribute' => ['process_accessors'],
'Class::MOP::Class' => [
# deprecated