bump version to 0.62
[gitmo/Moose.git] / lib / Moose / Meta / Method / Overriden.pm
1 package Moose::Meta::Method::Overriden;
2
3 use strict;
4 use warnings;
5
6 our $VERSION   = '0.62';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Method';
11
12 sub new {
13     my ( $class, %args ) = @_;
14
15     # the package can be overridden by roles
16     # it is really more like body's compilation stash
17     # this is where we need to override the definition of super() so that the
18     # body of the code can call the right overridden version
19     my $_super_package = $args{package} || $args{class}->name;
20
21     my $name = $args{name};
22
23     my $super = $args{class}->find_next_method_by_name($name);
24
25     (defined $super)
26         || $class->throw_error("You cannot override '$name' because it has no super method", data => $name);
27
28     my $super_body = $super->body;
29
30     my $method = $args{method};
31
32     my $body = sub {
33         local @Moose::SUPER_ARGS = @_;
34         local $Moose::SUPER_BODY = $super_body;
35         return $method->(@_);
36     };
37
38     # FIXME do we need this make sure this works for next::method?
39     # subname "${_super_package}::${name}", $method;
40
41     # FIXME store additional attrs
42     $class->wrap(
43         $body,
44         package_name => $args{class}->name,
45         name         => $name
46     );
47 }
48
49 1;
50
51 __END__
52
53 =pod
54
55 =head1 NAME
56
57 Moose::Meta::Method::Overriden - A Moose Method metaclass for overriden methods
58
59 =head1 DESCRIPTION
60
61 This class implements method overriding logic for the L<Moose> C<override> keyword.
62
63 This involves setting up C<super> for the overriding body, and dispatching to
64 the correct parent method upon its invocation.
65
66 =head1 METHODS
67
68 =over 4
69
70 =item B<new>
71
72 =back
73
74 =head1 BUGS
75
76 All complex software has bugs lurking in it, and this module is no 
77 exception. If you find a bug please either email me, or add the bug
78 to cpan-RT.
79
80 =head1 AUTHOR
81
82 Yuval Kogman E<lt>nothingmuch@cpan.orgE<gt>
83
84 =head1 COPYRIGHT AND LICENSE
85
86 Copyright 2006-2008 by Infinity Interactive, Inc.
87
88 L<http://www.iinteractive.com>
89
90 This library is free software; you can redistribute it and/or modify
91 it under the same terms as Perl itself.
92
93 =cut