no more inlining, and its not actually any slower, at least not from naive benchmarks
[gitmo/Moose.git] / lib / Moose / Meta / Method.pm
CommitLineData
8ee73eeb 1package Moose::Meta::Method;
2
3use strict;
4use warnings;
5
6our $VERSION = '0.01';
7
8use base 'Class::MOP::Method';
9
101;
11
12__END__
13
14=pod
15
39b3bc94 16=head1 NAME
17
18=head1 SYNOPOSIS
19
20=head1 DESCRIPTION
21
22=head1 METHODS
23
24=over 4
25
26=back
27
28=head1 BUGS
29
30All complex software has bugs lurking in it, and this module is no
31exception. If you find a bug please either email me, or add the bug
32to cpan-RT.
33
34=head1 AUTHOR
35
36Stevan Little E<lt>stevan@iinteractive.comE<gt>
37
38Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
39
40=head1 COPYRIGHT AND LICENSE
41
42Copyright 2006 by Infinity Interactive, Inc.
43
44L<http://www.iinteractive.com>
45
46This library is free software; you can redistribute it and/or modify
47it under the same terms as Perl itself.
48
8ee73eeb 49=cut