package Class::MOP::Method::Overload; BEGIN { $Class::MOP::Method::Overload::AUTHORITY = 'cpan:STEVAN'; } $Class::MOP::Method::Overload::VERSION = '2.1204'; use strict; use warnings; use Carp 'confess'; use parent 'Class::MOP::Method'; sub wrap { my $class = shift; my (@args) = @_; unshift @args, 'body' if @args % 2 == 1; my %params = @args; require Moose::Util; Moose::Util::throw_exception( OperatorIsRequired => params => \%params, class => $class ) unless exists $params{operator}; return $class->SUPER::wrap( name => "($params{operator}", %params, ); } sub _new { my $class = shift; return Class::MOP::Class->initialize($class)->new_object(@_) if $class ne __PACKAGE__; my $params = @_ == 1 ? $_[0] : {@_}; return bless { # inherited from Class::MOP::Method 'body' => $params->{body}, 'associated_metaclass' => $params->{associated_metaclass}, 'package_name' => $params->{package_name}, 'name' => $params->{name}, 'original_method' => $params->{original_method}, # defined in this class 'operator' => $params->{operator}, } => $class; } 1; # ABSTRACT: Method Meta Object for methods which implement overloading __END__ =pod =encoding UTF-8 =head1 NAME Class::MOP::Method::Overload - Method Meta Object for methods which implement overloading =head1 VERSION version 2.1204 =head1 DESCRIPTION This is a L subclass which represents methods that implement overloading. =head1 METHODS =over 4 =item B<< Class::MOP::Method::Overload->wrap($metamethod, %options) >> This is the constructor. The options accepted are identical to the ones accepted by L, except that it also required an C parameter, which should be an operator as defined by the L pragma. =item B<< $metamethod->operator >> This returns the operator that was passed to new. =back =head1 AUTHORS =over 4 =item * Stevan Little =item * Dave Rolsky =item * Jesse Luehrs =item * Shawn M Moore =item * יובל קוג'מן (Yuval Kogman) =item * Karen Etheridge =item * Florian Ragwitz =item * Hans Dieter Pearcey =item * Chris Prather =item * Matt S Trout =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2006 by Infinity Interactive, Inc.. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut