X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=lib%2FDevel%2FREPL%2FPlugin%2FShowClass.pm;h=6388c5b1a7547ea34e8eec7b4c1fcab1ca3e0cd1;hp=9f79853077fd854e46191eba7f6ec327b8b57a28;hb=afc8677b078de3f125147caf731bd298c8b6d04e;hpb=aa8b764738156914d48d182ee0706e4c3d4e5c99 diff --git a/lib/Devel/REPL/Plugin/ShowClass.pm b/lib/Devel/REPL/Plugin/ShowClass.pm index 9f79853..6388c5b 100644 --- a/lib/Devel/REPL/Plugin/ShowClass.pm +++ b/lib/Devel/REPL/Plugin/ShowClass.pm @@ -1,3 +1,5 @@ +use strict; +use warnings; package Devel::REPL::Plugin::ShowClass; use Devel::REPL::Plugin; use namespace::autoclean; @@ -16,17 +18,17 @@ before 'eval' => sub { after 'eval' => sub { my $self = shift; - + my @metas_to_show; - + foreach my $class (Class::MOP::get_all_metaclass_names()) { unless (exists $self->metaclass_cache->{$class}) { push @metas_to_show => Class::MOP::get_metaclass_by_name($class) } - } - + } + $self->display_class($_) foreach @metas_to_show; - + $self->update_metaclass_cache; }; @@ -36,33 +38,33 @@ sub update_metaclass_cache { $self->metaclass_cache->{$class} = ( ("" . Class::MOP::get_metaclass_by_name($class)) ); - } + } } sub display_class { my ($self, $meta) = @_; $self->print('package ' . $meta->name . ";\n\n"); $self->print('extends (' . (join ", " => $meta->superclasses) . ");\n\n") if $meta->superclasses; - $self->print('with (' . (join ", " => map { $_->name } @{$meta->roles}) . ");\n\n") if $meta->can('roles'); + $self->print('with (' . (join ", " => map { $_->name } @{$meta->roles}) . ");\n\n") if $meta->can('roles'); foreach my $attr (map { $meta->get_attribute($_) } $meta->get_attribute_list) { $self->print('has ' . $attr->name . " => (\n"); - $self->print(' is => ' . $attr->_is_metadata . ",\n") if $attr->_is_metadata; - $self->print(' isa => ' . $attr->_isa_metadata . ",\n") if $attr->_isa_metadata; - $self->print(' required => ' . $attr->is_required . ",\n") if $attr->is_required; - $self->print(' lazy => ' . $attr->is_lazy . ",\n") if $attr->is_lazy; - $self->print(' coerce => ' . $attr->should_coerce . ",\n") if $attr->should_coerce; - $self->print(' is_weak_ref => ' . $attr->is_weak_ref . ",\n") if $attr->is_weak_ref; - $self->print(' auto_deref => ' . $attr->should_auto_deref . ",\n") if $attr->should_auto_deref; + $self->print(' is => ' . $attr->_is_metadata . ",\n") if $attr->_is_metadata; + $self->print(' isa => ' . $attr->_isa_metadata . ",\n") if $attr->_isa_metadata; + $self->print(' required => ' . $attr->is_required . ",\n") if $attr->is_required; + $self->print(' lazy => ' . $attr->is_lazy . ",\n") if $attr->is_lazy; + $self->print(' coerce => ' . $attr->should_coerce . ",\n") if $attr->should_coerce; + $self->print(' is_weak_ref => ' . $attr->is_weak_ref . ",\n") if $attr->is_weak_ref; + $self->print(' auto_deref => ' . $attr->should_auto_deref . ",\n") if $attr->should_auto_deref; $self->print(");\n"); $self->print("\n"); } foreach my $method_name ($meta->get_method_list) { next if $method_name eq 'meta' || $meta->get_method($method_name)->isa('Class::MOP::Method::Accessor'); - $self->print("sub $method_name { ... }\n"); - $self->print("\n"); + $self->print("sub $method_name { ... }\n"); + $self->print("\n"); } - $self->print("1;\n"); + $self->print("1;\n"); } 1;