X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FClass%2FMOP%2FPackage.pm;h=43e42f95d2082969b26c69ed04bb525d153232ee;hb=4bfa5ddbc8d54123eb64b0873f71a28b03064f9a;hp=b3fc12fb1687439c8e9e68342ce9522be1893705;hpb=7329b9e22f165fcc4b0f688986197ca5f7e109ff;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Package.pm b/lib/Class/MOP/Package.pm index b3fc12f..43e42f9 100644 --- a/lib/Class/MOP/Package.pm +++ b/lib/Class/MOP/Package.pm @@ -4,10 +4,11 @@ package Class::MOP::Package; use strict; use warnings; +use B; use Scalar::Util 'blessed'; use Carp 'confess'; -our $VERSION = '0.70'; +our $VERSION = '0.78'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -31,6 +32,7 @@ sub initialize { } else { my $meta = ( ref $class || $class )->_new({ 'package' => $package_name, + %options, }); Class::MOP::store_metaclass_by_name($package_name, $meta); @@ -77,7 +79,6 @@ sub _new { # all these attribute readers will be bootstrapped # away in the Class::MOP bootstrap section -sub name { $_[0]->{'package'} } sub namespace { # NOTE: # because of issues with the Perl API @@ -274,36 +275,6 @@ sub list_all_package_symbols { } } -sub get_all_package_symbols { - my ($self, $type_filter) = @_; - - die "Cannot call get_all_package_symbols as a class method" - unless ref $self; - - my $namespace = $self->namespace; - - return %$namespace unless defined $type_filter; - - # for some reason this nasty impl is orders of magnitude faster than a clean version - if ( $type_filter eq 'CODE' ) { - my $pkg; - no strict 'refs'; - return map { - (ref($namespace->{$_}) - ? ( $_ => \&{$pkg ||= $self->name . "::$_"} ) - : ( (*{$namespace->{$_}}{CODE}) # the extra parents prevent breakage on 5.8.2 - ? ( $_ => *{$namespace->{$_}}{CODE} ) - : () ) ) - } keys %$namespace; - } else { - return map { - $_ => *{$namespace->{$_}}{$type_filter} - } grep { - !ref($namespace->{$_}) && *{$namespace->{$_}}{$type_filter} - } keys %$namespace; - } -} - 1; __END__ @@ -320,6 +291,10 @@ This is an abstraction of a Perl 5 package, it is a superclass of L and provides all of the symbol table introspection methods. +=head1 INHERITANCE + +B is a subclass of L + =head1 METHODS =over 4