File Coverage

blib/lib/Moose/Meta/Method.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Moose::Meta::Method;
2             our $VERSION = '2.2203';
3              
4 403     403   160865 use strict;
  403         837  
  403         13370  
5 403     403   1879 use warnings;
  403         800  
  403         9117  
6              
7 403     403   2003 use Class::MOP::MiniTrait;
  403         782  
  403         9590  
8              
9 403     403   2023 use parent 'Class::MOP::Method';
  403         788  
  403         2377  
10              
11             Class::MOP::MiniTrait::apply(__PACKAGE__, 'Moose::Meta::Object::Trait');
12              
13             1;
14              
15             # ABSTRACT: A Moose Method metaclass
16              
17             __END__
18              
19             =pod
20              
21             =encoding UTF-8
22              
23             =head1 NAME
24              
25             Moose::Meta::Method - A Moose Method metaclass
26              
27             =head1 VERSION
28              
29             version 2.2203
30              
31             =head1 DESCRIPTION
32              
33             This class is a subclass of L<Class::MOP::Method> that provides
34             additional Moose-specific functionality, all of which is private.
35              
36             To understand this class, you should read the L<Class::MOP::Method>
37             documentation.
38              
39             =head1 INHERITANCE
40              
41             C<Moose::Meta::Method> is a subclass of L<Class::MOP::Method>.
42              
43             =head1 BUGS
44              
45             See L<Moose/BUGS> for details on reporting bugs.
46              
47             =head1 AUTHORS
48              
49             =over 4
50              
51             =item *
52              
53             Stevan Little <stevan@cpan.org>
54              
55             =item *
56              
57             Dave Rolsky <autarch@urth.org>
58              
59             =item *
60              
61             Jesse Luehrs <doy@cpan.org>
62              
63             =item *
64              
65             Shawn M Moore <sartak@cpan.org>
66              
67             =item *
68              
69             יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
70              
71             =item *
72              
73             Karen Etheridge <ether@cpan.org>
74              
75             =item *
76              
77             Florian Ragwitz <rafl@debian.org>
78              
79             =item *
80              
81             Hans Dieter Pearcey <hdp@cpan.org>
82              
83             =item *
84              
85             Chris Prather <chris@prather.org>
86              
87             =item *
88              
89             Matt S Trout <mstrout@cpan.org>
90              
91             =back
92              
93             =head1 COPYRIGHT AND LICENSE
94              
95             This software is copyright (c) 2006 by Infinity Interactive, Inc.
96              
97             This is free software; you can redistribute it and/or modify it under
98             the same terms as the Perl 5 programming language system itself.
99              
100             =cut