← Index
NYTProf Performance Profile   « line view »
For examples/Atom-timer.pl
  Run on Mon Aug 12 14:45:28 2013
Reported on Mon Aug 12 14:46:15 2013

Filename/Users/dde/perl5/perlbrew/perls/5.18.0t/lib/site_perl/5.18.0/darwin-thread-multi-2level/Moose/Meta/Role/Method/Conflicting.pm
StatementsExecuted 13 statements in 224µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1119µs9µsMoose::Meta::Role::Method::Conflicting::::BEGIN@3Moose::Meta::Role::Method::Conflicting::BEGIN@3
1116µs122µsMoose::Meta::Role::Method::Conflicting::::BEGIN@13Moose::Meta::Role::Method::Conflicting::BEGIN@13
1116µs17µsMoose::Meta::Role::Method::Conflicting::::BEGIN@10Moose::Meta::Role::Method::Conflicting::BEGIN@10
1116µs72µsMoose::Meta::Role::Method::Conflicting::::BEGIN@15Moose::Meta::Role::Method::Conflicting::BEGIN@15
1116µs9µsMoose::Meta::Role::Method::Conflicting::::BEGIN@11Moose::Meta::Role::Method::Conflicting::BEGIN@11
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 9µs within Moose::Meta::Role::Method::Conflicting::BEGIN@3 which was called: # once (9µs+0s) by Moose::Meta::Role::BEGIN@22 at line 5
BEGIN {
414µs $Moose::Meta::Role::Method::Conflicting::AUTHORITY = 'cpan:STEVAN';
5138µs19µs}
# spent 9µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@3
6{
72800ns $Moose::Meta::Role::Method::Conflicting::VERSION = '2.1005';
8}
9
10220µs227µs
# spent 17µs (6+10) within Moose::Meta::Role::Method::Conflicting::BEGIN@10 which was called: # once (6µs+10µs) by Moose::Meta::Role::BEGIN@22 at line 10
use strict;
# spent 17µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@10 # spent 10µs making 1 call to strict::import
11223µs212µs
# spent 9µs (6+3) within Moose::Meta::Role::Method::Conflicting::BEGIN@11 which was called: # once (6µs+3µs) by Moose::Meta::Role::BEGIN@22 at line 11
use warnings;
# spent 9µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@11 # spent 3µs making 1 call to warnings::import
12
13226µs2236µs
# spent 122µs (6+115) within Moose::Meta::Role::Method::Conflicting::BEGIN@13 which was called: # once (6µs+115µs) by Moose::Meta::Role::BEGIN@22 at line 13
use Moose::Util;
# spent 122µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@13 # spent 115µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:337]
14
152102µs2137µs
# spent 72µs (6+65) within Moose::Meta::Role::Method::Conflicting::BEGIN@15 which was called: # once (6µs+65µs) by Moose::Meta::Role::BEGIN@22 at line 15
use base qw(Moose::Meta::Role::Method::Required);
# spent 72µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@15 # spent 65µs making 1 call to base::import
16
1715µs3546µs__PACKAGE__->meta->add_attribute('roles' => (
# spent 276µs making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute # spent 265µs making 1 call to Moose::Meta::Role::Method::Required::meta # spent 5µ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
2814µs1;
29
30# ABSTRACT: A Moose metaclass for conflicting methods in Roles
31
32__END__