| File | /usr/local/lib/perl/5.10.0/Moose/Meta/Role/Method/Required.pm |
| Statements Executed | 20 |
| Total Time | 0.0003406 seconds |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 0 | 0 | 0 | 0s | 0s | Moose::Meta::Role::Method::Required::BEGIN |
| 0 | 0 | 0 | 0s | 0s | Moose::Meta::Role::Method::Required::__ANON__[:8] |
| 0 | 0 | 0 | 0s | 0s | Moose::Meta::Role::Method::Required::new |
| Line | Stmts. | Exclusive Time | Avg. | Code |
|---|---|---|---|---|
| 1 | ||||
| 2 | package Moose::Meta::Role::Method::Required; | |||
| 3 | ||||
| 4 | 3 | 32µs | 11µs | use strict; # spent 10µs making 1 call to strict::import |
| 5 | 3 | 26µs | 9µs | use warnings; # spent 28µs making 1 call to warnings::import |
| 6 | 3 | 78µs | 26µs | use metaclass; # spent 813µs making 1 call to metaclass::import |
| 7 | ||||
| 8 | use overload '""' => sub { shift->name }, # stringify to method name | |||
| 9 | 3 | 36µs | 12µs | fallback => 1; # spent 56µs making 1 call to overload::import |
| 10 | ||||
| 11 | 3 | 120µs | 40µs | use base qw(Class::MOP::Object); # spent 81µs making 1 call to base::import |
| 12 | ||||
| 13 | 1 | 700ns | 700ns | our $VERSION = '1.15'; |
| 14 | 1 | 22µs | 22µs | $VERSION = eval $VERSION; |
| 15 | 1 | 600ns | 600ns | our $AUTHORITY = 'cpan:STEVAN'; |
| 16 | ||||
| 17 | # This is not a Moose::Meta::Role::Method because it has no implementation, it | |||
| 18 | # is just a name | |||
| 19 | ||||
| 20 | 1 | 18µs | 18µs | __PACKAGE__->meta->add_attribute('name' => ( # spent 799µs making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute
# spent 34µs making 1 call to Moose::Meta::Role::Method::Required::meta |
| 21 | reader => 'name', | |||
| 22 | required => 1, | |||
| 23 | )); | |||
| 24 | ||||
| 25 | sub new { shift->_new(@_) } | |||
| 26 | ||||
| 27 | 1 | 8µs | 8µs | 1; |
| 28 | ||||
| 29 | __END__ | |||
| 30 | ||||
| 31 | =pod | |||
| 32 | ||||
| 33 | =head1 NAME | |||
| 34 | ||||
| 35 | Moose::Meta::Role::Method::Required - A Moose metaclass for required methods in Roles | |||
| 36 | ||||
| 37 | =head1 DESCRIPTION | |||
| 38 | ||||
| 39 | =head1 INHERITANCE | |||
| 40 | ||||
| 41 | C<Moose::Meta::Role::Method::Required> is a subclass of L<Class::MOP::Object>. | |||
| 42 | It is B<not> a subclass of C<Moose::Meta::Role::Method> since it does not | |||
| 43 | provide an implementation of the method. | |||
| 44 | ||||
| 45 | =head1 METHODS | |||
| 46 | ||||
| 47 | =over 4 | |||
| 48 | ||||
| 49 | =item B<< Moose::Meta::Role::Method::Required->new(%options) >> | |||
| 50 | ||||
| 51 | This creates a new type constraint based on the provided C<%options>: | |||
| 52 | ||||
| 53 | =over 8 | |||
| 54 | ||||
| 55 | =item * name | |||
| 56 | ||||
| 57 | The method name. This is required. | |||
| 58 | ||||
| 59 | =back | |||
| 60 | ||||
| 61 | =item B<< $method->name >> | |||
| 62 | ||||
| 63 | Returns the required method's name, as provided to the constructor. | |||
| 64 | ||||
| 65 | =back | |||
| 66 | ||||
| 67 | =head1 BUGS | |||
| 68 | ||||
| 69 | See L<Moose/BUGS> for details on reporting bugs. | |||
| 70 | ||||
| 71 | =head1 AUTHOR | |||
| 72 | ||||
| 73 | Stevan Little E<lt>stevan@iinteractive.comE<gt> | |||
| 74 | ||||
| 75 | =head1 COPYRIGHT AND LICENSE | |||
| 76 | ||||
| 77 | Copyright 2006-2010 by Infinity Interactive, Inc. | |||
| 78 | ||||
| 79 | L<http://www.iinteractive.com> | |||
| 80 | ||||
| 81 | This library is free software; you can redistribute it and/or modify | |||
| 82 | it under the same terms as Perl itself. | |||
| 83 | ||||
| 84 | =cut |