← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 21:45:08 2010
Reported on Wed Nov 17 22:11:14 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/x86_64-linux/Moose/Meta/Role/Method/Conflicting.pm
StatementsExecuted 17 statements in 942µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11175µs93µsMoose::Meta::Role::Method::Conflicting::::BEGIN@4Moose::Meta::Role::Method::Conflicting::BEGIN@4
11142µs344µsMoose::Meta::Role::Method::Conflicting::::BEGIN@9Moose::Meta::Role::Method::Conflicting::BEGIN@9
11140µs108µsMoose::Meta::Role::Method::Conflicting::::BEGIN@5Moose::Meta::Role::Method::Conflicting::BEGIN@5
11139µs691µsMoose::Meta::Role::Method::Conflicting::::BEGIN@7Moose::Meta::Role::Method::Conflicting::BEGIN@7
0000s0sMoose::Meta::Role::Method::Conflicting::::roles_as_english_listMoose::Meta::Role::Method::Conflicting::roles_as_english_list
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::Conflicting;
3
43103µs2111µs
# spent 93µs (75+18) within Moose::Meta::Role::Method::Conflicting::BEGIN@4 which was called: # once (75µs+18µs) by Moose::Meta::Role::BEGIN@20 at line 4
use strict;
# spent 93µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@4 # spent 18µs making 1 call to strict::import
5399µs2177µs
# spent 108µs (40+69) within Moose::Meta::Role::Method::Conflicting::BEGIN@5 which was called: # once (40µs+69µs) by Moose::Meta::Role::BEGIN@20 at line 5
use warnings;
# spent 108µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@5 # spent 69µs making 1 call to warnings::import
6
73145µs21.34ms
# spent 691µs (39+652) within Moose::Meta::Role::Method::Conflicting::BEGIN@7 which was called: # once (39µs+652µs) by Moose::Meta::Role::BEGIN@20 at line 7
use Moose::Util;
# spent 691µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@7 # spent 652µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:756]
8
93463µs2647µs
# spent 344µs (42+303) within Moose::Meta::Role::Method::Conflicting::BEGIN@9 which was called: # once (42µs+303µs) by Moose::Meta::Role::BEGIN@20 at line 9
use base qw(Moose::Meta::Role::Method::Required);
# spent 344µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@9 # spent 303µs making 1 call to base::import
10
1115µsour $VERSION = '1.19';
12159µs$VERSION = eval $VERSION;
# spent 10µs executing statements in string eval
1313µsour $AUTHORITY = 'cpan:STEVAN';
14
15140µs24.23ms__PACKAGE__->meta->add_attribute('roles' => (
# spent 2.19ms making 1 call to Moose::Meta::Role::Method::Required::meta # spent 2.04ms making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute
16 reader => 'roles',
17 required => 1,
18));
19
20sub roles_as_english_list {
21 my $self = shift;
22 Moose::Util::english_list( map { q{'} . $_ . q{'} } @{ $self->roles } );
23}
24
25126µs1;
26
27__END__