← Index
NYTProf Performance Profile   « block view • line view • sub view »
For mentat.storage.mongo.pl
  Run on Tue Jun 24 10:04:38 2014
Reported on Tue Jun 24 10:05:07 2014

Filename/usr/local/lib/perl/5.14.2/Moose/Meta/Role/Method/Conflicting.pm
StatementsExecuted 13 statements in 223µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs10µsMoose::Meta::Role::Method::Conflicting::::BEGIN@3Moose::Meta::Role::Method::Conflicting::BEGIN@3
1118µs11µsMoose::Meta::Role::Method::Conflicting::::BEGIN@10Moose::Meta::Role::Method::Conflicting::BEGIN@10
1118µs62µsMoose::Meta::Role::Method::Conflicting::::BEGIN@15Moose::Meta::Role::Method::Conflicting::BEGIN@15
1117µs12µsMoose::Meta::Role::Method::Conflicting::::BEGIN@11Moose::Meta::Role::Method::Conflicting::BEGIN@11
1117µs173µsMoose::Meta::Role::Method::Conflicting::::BEGIN@13Moose::Meta::Role::Method::Conflicting::BEGIN@13
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 10µs within Moose::Meta::Role::Method::Conflicting::BEGIN@3 which was called: # once (10µs+0s) by Moose::Meta::Role::BEGIN@22 at line 5
BEGIN {
415µs $Moose::Meta::Role::Method::Conflicting::AUTHORITY = 'cpan:STEVAN';
5132µs110µs}
6{
721µs $Moose::Meta::Role::Method::Conflicting::VERSION = '2.1005';
8}
9
10222µs214µs
# spent 11µs (8+3) within Moose::Meta::Role::Method::Conflicting::BEGIN@10 which was called: # once (8µs+3µs) by Moose::Meta::Role::BEGIN@22 at line 10
use strict;
# spent 11µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@10 # spent 3µs making 1 call to strict::import
11221µs217µs
# spent 12µs (7+5) within Moose::Meta::Role::Method::Conflicting::BEGIN@11 which was called: # once (7µs+5µs) by Moose::Meta::Role::BEGIN@22 at line 11
use warnings;
# spent 12µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@11 # spent 5µs making 1 call to warnings::import
12
13231µs2340µs
# spent 173µs (7+167) within Moose::Meta::Role::Method::Conflicting::BEGIN@13 which was called: # once (7µs+167µs) by Moose::Meta::Role::BEGIN@22 at line 13
use Moose::Util;
# spent 173µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@13 # spent 167µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:337]
14
152100µs2117µs
# spent 62µs (8+55) within Moose::Meta::Role::Method::Conflicting::BEGIN@15 which was called: # once (8µs+55µs) by Moose::Meta::Role::BEGIN@22 at line 15
use base qw(Moose::Meta::Role::Method::Required);
# spent 62µs making 1 call to Moose::Meta::Role::Method::Conflicting::BEGIN@15 # spent 55µs making 1 call to base::import
16
1717µs3591µs__PACKAGE__->meta->add_attribute('roles' => (
# spent 306µs making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute # spent 280µ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
2815µs1;
29
30# ABSTRACT: A Moose metaclass for conflicting methods in Roles
31
32__END__