← Index
NYTProf Performance Profile   « line view »
For fastest.pl
  Run on Fri Jan 31 20:48:16 2014
Reported on Fri Jan 31 20:49:41 2014

Filename/opt/perl-5.18.1/lib/site_perl/5.18.1/darwin-thread-multi-2level/Moose/Meta/Role/Method/Conflicting.pm
StatementsExecuted 13 statements in 786µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs16µsMoose::Meta::Role::Method::Conflicting::::BEGIN@3Moose::Meta::Role::Method::Conflicting::BEGIN@3
11112µs112µsMoose::Meta::Role::Method::Conflicting::::BEGIN@15Moose::Meta::Role::Method::Conflicting::BEGIN@15
11110µs162µsMoose::Meta::Role::Method::Conflicting::::BEGIN@13Moose::Meta::Role::Method::Conflicting::BEGIN@13
1119µs14µsMoose::Meta::Role::Method::Conflicting::::BEGIN@11Moose::Meta::Role::Method::Conflicting::BEGIN@11
1119µs24µsMoose::Meta::Role::Method::Conflicting::::BEGIN@10Moose::Meta::Role::Method::Conflicting::BEGIN@10
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
# spent 16µs within Moose::Meta::Role::Method::Conflicting::BEGIN@3 which was called: # once (16µs+0s) by Moose::Meta::Role::BEGIN@22 at line 5
BEGIN {
417µs $Moose::Meta::Role::Method::Conflicting::AUTHORITY = 'cpan:STEVAN';
5141µs116µs}
# spent 16µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@3
6{
721µs $Moose::Meta::Role::Method::Conflicting::VERSION = '2.1005';
8}
9
10229µs239µs
# spent 24µs (9+15) within Moose::Meta::Role::Method::Conflicting::BEGIN@10 which was called: # once (9µs+15µs) by Moose::Meta::Role::BEGIN@22 at line 10
use strict;
# spent 24µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@10 # spent 15µs making 1 call to strict::import
11229µs218µs
# spent 14µs (9+4) within Moose::Meta::Role::Method::Conflicting::BEGIN@11 which was called: # once (9µs+4µs) by Moose::Meta::Role::BEGIN@22 at line 11
use warnings;
# spent 14µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@11 # spent 4µs making 1 call to warnings::import
12
132540µs2315µs
# spent 162µs (10+152) within Moose::Meta::Role::Method::Conflicting::BEGIN@13 which was called: # once (10µs+152µs) by Moose::Meta::Role::BEGIN@22 at line 13
use Moose::Util;
# spent 162µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@13 # spent 152µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:337]
14
152125µs2211µs
# spent 112µs (12+100) within Moose::Meta::Role::Method::Conflicting::BEGIN@15 which was called: # once (12µs+100µs) by Moose::Meta::Role::BEGIN@22 at line 15
use base qw(Moose::Meta::Role::Method::Required);
# spent 112µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@15 # spent 100µs making 1 call to base::import
16
1718µs3724µs__PACKAGE__->meta->add_attribute('roles' => (
# spent 391µs making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute # spent 326µs making 1 call to Moose::Meta::Role::Method::Required::meta # spent 7µs making 1 call to Class::MOP::_definition_context
18 reader => 'roles',
19 required => 1,
20 Class::MOP::_definition_context(),
21));
22
23sub roles_as_english_list {
24 my $self = shift;
25 Moose::Util::english_list( map { q{'} . $_ . q{'} } @{ $self->roles } );
26}
27
2816µs1;
29
30# ABSTRACT: A Moose metaclass for conflicting methods in Roles
31
32__END__