From: gfx Date: Fri, 25 Sep 2009 01:04:59 +0000 (+0900) Subject: Tidy X-Git-Tag: 0.35~30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=ea249879d28f5ce42afb95feeb7dcb6d37fcd241;hp=2cea7a5fabbf2a81e0518c3f967706c9428afa8d Tidy --- diff --git a/lib/Mouse/Meta/Role.pm b/lib/Mouse/Meta/Role.pm index f29dae0..6deb58c 100644 --- a/lib/Mouse/Meta/Role.pm +++ b/lib/Mouse/Meta/Role.pm @@ -41,8 +41,7 @@ sub get_required_method_list{ } sub add_required_methods { - my $self = shift; - my @methods = @_; + my($self, @methods) = @_; push @{$self->{required_methods}}, @methods; } diff --git a/lib/Mouse/Util.pm b/lib/Mouse/Util.pm index 8923749..35c117d 100644 --- a/lib/Mouse/Util.pm +++ b/lib/Mouse/Util.pm @@ -10,16 +10,16 @@ our @EXPORT_OK = qw( find_meta does_role resolve_metaclass_alias + apply_all_roles english_list load_class is_class_loaded - apply_all_roles - not_supported - get_linear_isa get_code_info + + not_supported ); our %EXPORT_TAGS = ( all => \@EXPORT_OK, @@ -295,9 +295,41 @@ Mouse::Util - features, with or without their dependencies =head1 IMPLEMENTATIONS FOR -=head2 L +=head2 Moose::Util + +=head3 C + +=head3 C + +=head3 C + +=head3 C + +=head3 C + +=head2 Class::MOP + +=head3 C + +=head3 C + +=head2 MRO::Compat + +=head3 C + +=head2 Sub::Identify + +=head3 C + +=head1 UTILITIES FOR MOUSE + +=over 4 + +=item * + +C -=head3 get_linear_isa +=back =cut