← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 22:00:36 2010
Reported on Wed Nov 17 22:10:07 2010

Filename/home/doy/coding/src/Moose/blib/lib//Moose/Meta/Role/Method/Conflicting.pm
StatementsExecuted 17 statements in 914µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11170µs88µsMoose::Meta::Role::Method::Conflicting::::BEGIN@4Moose::Meta::Role::Method::Conflicting::BEGIN@4
11143µs349µsMoose::Meta::Role::Method::Conflicting::::BEGIN@9Moose::Meta::Role::Method::Conflicting::BEGIN@9
11139µs715µsMoose::Meta::Role::Method::Conflicting::::BEGIN@7Moose::Meta::Role::Method::Conflicting::BEGIN@7
11139µs106µsMoose::Meta::Role::Method::Conflicting::::BEGIN@5Moose::Meta::Role::Method::Conflicting::BEGIN@5
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
43101µs2106µs
# spent 88µs (70+18) within Moose::Meta::Role::Method::Conflicting::BEGIN@4 which was called: # once (70µs+18µs) by Moose::Meta::Role::BEGIN@20 at line 4
use strict;
# spent 88µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@4 # spent 18µs making 1 call to strict::import
5397µs2174µs
# spent 106µs (39+68) within Moose::Meta::Role::Method::Conflicting::BEGIN@5 which was called: # once (39µs+68µs) by Moose::Meta::Role::BEGIN@20 at line 5
use warnings;
# spent 106µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@5 # spent 68µs making 1 call to warnings::import
6
73144µs21.39ms
# spent 715µs (39+676) within Moose::Meta::Role::Method::Conflicting::BEGIN@7 which was called: # once (39µs+676µs) by Moose::Meta::Role::BEGIN@20 at line 7
use Moose::Util;
# spent 715µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@7 # spent 676µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:756]
8
93434µs2654µs
# spent 349µs (43+306) within Moose::Meta::Role::Method::Conflicting::BEGIN@9 which was called: # once (43µs+306µs) by Moose::Meta::Role::BEGIN@20 at line 9
use base qw(Moose::Meta::Role::Method::Required);
# spent 349µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@9 # spent 306µs making 1 call to base::import
10
1114µsour $VERSION = '1.19';
12168µs$VERSION = eval $VERSION;
# spent 11µs executing statements in string eval
1313µsour $AUTHORITY = 'cpan:STEVAN';
14
15138µs23.98ms__PACKAGE__->meta->add_attribute('roles' => (
# spent 2.02ms making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute # spent 1.96ms making 1 call to Moose::Meta::Role::Method::Required::meta
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
25124µs1;
26
27__END__