← Index
NYTProf Performance Profile   « block view • line view • sub view »
For 01.HTTP.t
  Run on Tue May 4 15:25:55 2010
Reported on Tue May 4 15:26:06 2010

File /usr/local/lib/perl5/site_perl/5.10.1/darwin-2level/Moose/Meta/Role/Method.pm
Statements Executed 13
Statement Execution Time 127µs
Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs28µsMoose::Meta::Role::Method::::BEGIN@5Moose::Meta::Role::Method::BEGIN@5
11114µs17µsMoose::Meta::Role::Method::::BEGIN@4Moose::Meta::Role::Method::BEGIN@4
1118µs65µ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
4320µs219µs
# spent 17µs (14+3) within Moose::Meta::Role::Method::BEGIN@4 which was called # once (14µs+3µs) by Moose::Meta::Role::BEGIN@18 at line 4
use strict;
# spent 17µs making 1 call to Moose::Meta::Role::Method::BEGIN@4 # spent 3µs making 1 call to strict::import
5348µs241µs
# spent 28µs (16+13) within Moose::Meta::Role::Method::BEGIN@5 which was called # once (16µs+13µs) by Moose::Meta::Role::BEGIN@18 at line 5
use warnings;
# spent 28µs making 1 call to Moose::Meta::Role::Method::BEGIN@5 # spent 13µs making 1 call to warnings::import
6
71600nsour $VERSION = '0.98';
8120µs$VERSION = eval $VERSION;
91300nsour $AUTHORITY = 'cpan:STEVAN';
10
11330µs2123µs
# spent 65µs (8+58) within Moose::Meta::Role::Method::BEGIN@11 which was called # once (8µs+58µs) by Moose::Meta::Role::BEGIN@18 at line 11
use base 'Moose::Meta::Method';
# spent 65µs making 1 call to Moose::Meta::Role::Method::BEGIN@11 # spent 58µs making 1 call to base::import
12
1318µ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