bump version to 0.63
[gitmo/Moose.git] / lib / Moose / Meta / Method.pm
1 package Moose::Meta::Method;
2
3 use strict;
4 use warnings;
5
6 our $VERSION   = '0.63';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Class::MOP::Method';
11
12 sub _error_thrower {
13     my $self = shift;
14     ( ref $self && $self->associated_metaclass ) || "Moose::Meta::Class";
15 }
16
17 sub throw_error {
18     my $self = shift;
19     my $inv = $self->_error_thrower;
20     unshift @_, "message" if @_ % 2 == 1;
21     unshift @_, method => $self if ref $self;
22     unshift @_, $inv;
23     my $handler = $inv->can("throw_error");
24     goto $handler; # to avoid incrementing depth by 1
25 }
26
27 sub _inline_throw_error {
28     my ( $self, $msg, $args ) = @_;
29     "\$meta->throw_error($msg" . ($args ? ", $args" : "") . ")"; # FIXME makes deparsing *REALLY* hard
30 }
31
32 1;
33
34 __END__
35
36 =pod
37
38 =head1 NAME
39
40 Moose::Meta::Method - A Moose Method metaclass
41
42 =head1 DESCRIPTION
43
44 For now, this is nothing but a subclass of Class::MOP::Method, 
45 but with the expanding role of the method sub-protocol, it might 
46 be more useful later on. 
47
48 =head1 METHODS
49
50 =over 4
51
52 =item throw_error $msg, %args
53
54 =item _inline_throw_error $msg_expr, $args_expr
55
56 =back
57
58 =head1 BUGS
59
60 All complex software has bugs lurking in it, and this module is no 
61 exception. If you find a bug please either email me, or add the bug
62 to cpan-RT.
63
64 =head1 AUTHOR
65
66 Stevan Little E<lt>stevan@iinteractive.comE<gt>
67
68 =head1 COPYRIGHT AND LICENSE
69
70 Copyright 2006-2008 by Infinity Interactive, Inc.
71
72 L<http://www.iinteractive.com>
73
74 This library is free software; you can redistribute it and/or modify
75 it under the same terms as Perl itself.
76
77 =cut