← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/bin/epoll_server.pl
  Run on Wed Jan 5 05:34:33 2011
Reported on Wed Jan 5 05:36:40 2011

File /usr/lib/perl5/vendor_perl/5.10.1/i386-linux-thread-multi/Moose/Meta/Role/Method.pm
Statements Executed 13
Statement Execution Time 226µs
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11127µs36µsMoose::Meta::Role::Method::::BEGIN@4Moose::Meta::Role::Method::BEGIN@4
11115µs47µsMoose::Meta::Role::Method::::BEGIN@5Moose::Meta::Role::Method::BEGIN@5
11115µs146µsMoose::Meta::Role::Method::::BEGIN@11Moose::Meta::Role::Method::BEGIN@11
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1
2package Moose::Meta::Role::Method;
3
4374µs244µs
# spent 36µs (27+8) within Moose::Meta::Role::Method::BEGIN@4 which was called # once (27µs+8µs) by Moose::Meta::Role::BEGIN@18 at line 4
use strict;
# spent 36µs making 1 call to Moose::Meta::Role::Method::BEGIN@4 # spent 8µs making 1 call to strict::import
5386µs279µs
# spent 47µs (15+32) within Moose::Meta::Role::Method::BEGIN@5 which was called # once (15µs+32µs) by Moose::Meta::Role::BEGIN@18 at line 5
use warnings;
# spent 47µs making 1 call to Moose::Meta::Role::Method::BEGIN@5 # spent 32µs making 1 call to warnings::import
6
711µsour $VERSION = '1.01';
8124µs$VERSION = eval $VERSION;
911µsour $AUTHORITY = 'cpan:STEVAN';
10
11335µs2278µs
# spent 146µs (15+132) within Moose::Meta::Role::Method::BEGIN@11 which was called # once (15µs+132µs) by Moose::Meta::Role::BEGIN@18 at line 11
use base 'Moose::Meta::Method';
# spent 146µs making 1 call to Moose::Meta::Role::Method::BEGIN@11 # spent 132µs making 1 call to base::import
12
1314µs1;
14
15__END__
16
17=pod
18
19=head1 NAME
20
21Moose::Meta::Role::Method - A Moose Method metaclass for Roles
22
23=head1 DESCRIPTION
24
25This is primarily used to mark methods coming from a role
26as being different. Right now it is nothing but a subclass
27of L<Moose::Meta::Method>.
28
29=head1 BUGS
30
31See L<Moose/BUGS> for details on reporting bugs.
32
33=head1 AUTHOR
34
35Stevan Little E<lt>stevan@iinteractive.comE<gt>
36
37=head1 COPYRIGHT AND LICENSE
38
39Copyright 2006-2010 by Infinity Interactive, Inc.
40
41L<http://www.iinteractive.com>
42
43This library is free software; you can redistribute it and/or modify
44it under the same terms as Perl itself.
45
46=cut