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=ea3a44932cf83628952d4baa1983026cb93a8064;hpb=d519662a06488c8d15eecbb2858f9bad58986731;p=gitmo%2FClass-MOP.git diff --git a/lib/Class/MOP/Package.pm b/lib/Class/MOP/Package.pm index ea3a449..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.64_01'; +our $VERSION = '0.78'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -27,15 +28,16 @@ sub initialize { # we hand-construct the class # until we can bootstrap it if ( my $meta = Class::MOP::get_metaclass_by_name($package_name) ) { - return $meta; + return $meta; } else { - my $meta = ( ref $class || $class )->_new({ - 'package' => $package_name, - }); + my $meta = ( ref $class || $class )->_new({ + 'package' => $package_name, + %options, + }); - Class::MOP::store_metaclass_by_name($package_name, $meta); + Class::MOP::store_metaclass_by_name($package_name, $meta); - return $meta; + return $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,32 +275,6 @@ sub list_all_package_symbols { } } -sub get_all_package_symbols { - my ($self, $type_filter) = @_; - my $namespace = $self->namespace; - - return %$namespace unless defined $type_filter; - - # for some reason this nasty impl is orders of magnitude aster than a clean version - if ( $type_filter eq 'CODE' ) { - my $pkg; - no strict 'refs'; - return map { - (ref($namespace->{$_}) - ? ( $_ => \&{$pkg ||= $self->name . "::$_"} ) - : ( *{$namespace->{$_}}{CODE} - ? ( $_ => *{$namespace->{$_}}{$type_filter} ) - : ())) - } keys %$namespace; - } else { - return map { - $_ => *{$namespace->{$_}}{$type_filter} - } grep { - !ref($namespace->{$_}) && *{$namespace->{$_}}{$type_filter} - } keys %$namespace; - } -} - 1; __END__ @@ -316,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