--- trunk/lib/Frey/Introspect.pm 2008/10/31 17:27:39 211 +++ trunk/lib/Frey/Introspect.pm 2008/10/31 17:58:45 212 @@ -147,7 +147,7 @@ my $package = $self->package; my @methods; - @methods = map { qq|$_| } $self->methods; + @methods = map { qq|$_| } $self->methods; my @attributes; if ( $meta->get_attribute_list ) { @@ -173,11 +173,11 @@ } $after .= ' '; } - qq|$before$_$after| + qq|$before$_$after| } sort $meta->get_attribute_list } - my $table = qq||; + my $table = qq|
MethodsAttributesProperties
|; while ( @methods || @attributes ) { my ($m,$a) = ( shift @methods, shift @attributes ); $m ||= ''; @@ -206,7 +206,7 @@ grep { ! m/\Q$package\E/ } # skip me map { my $name = $_->name; - qq|$name| . $name->meta->dump(2) . qq||; + qq|$name| . $name->meta->dump(2) . qq||; } $meta->calculate_all_roles );
MethodsAttributesProperties