← Index
NYTProf Performance Profile   « block view • line view • sub view »
For bin/pan_genome_post_analysis
  Run on Fri Mar 27 11:43:32 2015
Reported on Fri Mar 27 11:46:04 2015

Filename/Users/ap13/perl5/lib/perl5/darwin-2level/Moose/Meta/Role/Method/Required.pm
StatementsExecuted 13 statements in 249µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs56µsMoose::Meta::Role::Method::Required::::BEGIN@8Moose::Meta::Role::Method::Required::BEGIN@8
11112µs25µsMoose::Meta::Role::Method::Required::::BEGIN@4Moose::Meta::Role::Method::Required::BEGIN@4
1119µs36µsMoose::Meta::Role::Method::Required::::BEGIN@11Moose::Meta::Role::Method::Required::BEGIN@11
1118µs547µsMoose::Meta::Role::Method::Required::::BEGIN@6Moose::Meta::Role::Method::Required::BEGIN@6
1117µs11µsMoose::Meta::Role::Method::Required::::BEGIN@5Moose::Meta::Role::Method::Required::BEGIN@5
0000s0sMoose::Meta::Role::Method::Required::::__ANON__[:8]Moose::Meta::Role::Method::Required::__ANON__[:8]
0000s0sMoose::Meta::Role::Method::Required::::newMoose::Meta::Role::Method::Required::new
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Moose::Meta::Role::Method::Required;
21600nsour $VERSION = '2.1403';
3
4222µs237µs
# spent 25µs (12+12) within Moose::Meta::Role::Method::Required::BEGIN@4 which was called: # once (12µs+12µs) by Moose::Meta::Role::BEGIN@13 at line 4
use strict;
# spent 25µs making 1 call to Moose::Meta::Role::Method::Required::BEGIN@4 # spent 12µs making 1 call to strict::import
5224µs215µs
# spent 11µs (7+4) within Moose::Meta::Role::Method::Required::BEGIN@5 which was called: # once (7µs+4µs) by Moose::Meta::Role::BEGIN@13 at line 5
use warnings;
# spent 11µs making 1 call to Moose::Meta::Role::Method::Required::BEGIN@5 # spent 4µs making 1 call to warnings::import
6267µs21.09ms
# spent 547µs (8+540) within Moose::Meta::Role::Method::Required::BEGIN@6 which was called: # once (8µs+540µs) by Moose::Meta::Role::BEGIN@13 at line 6
use metaclass;
# spent 547µs making 1 call to Moose::Meta::Role::Method::Required::BEGIN@6 # spent 540µs making 1 call to metaclass::import
7
8
# spent 56µs (13+43) within Moose::Meta::Role::Method::Required::BEGIN@8 which was called: # once (13µs+43µs) by Moose::Meta::Role::BEGIN@13 at line 9
use overload '""' => sub { shift->name }, # stringify to method name
9234µs299µs fallback => 1;
# spent 56µs making 1 call to Moose::Meta::Role::Method::Required::BEGIN@8 # spent 43µs making 1 call to overload::import
10
11287µs264µs
# spent 36µs (9+27) within Moose::Meta::Role::Method::Required::BEGIN@11 which was called: # once (9µs+27µs) by Moose::Meta::Role::BEGIN@13 at line 11
use parent 'Class::MOP::Object';
# spent 36µs making 1 call to Moose::Meta::Role::Method::Required::BEGIN@11 # spent 27µs making 1 call to parent::import
12
13# This is not a Moose::Meta::Role::Method because it has no implementation, it
14# is just a name
15
1617µs3536µs__PACKAGE__->meta->add_attribute('name' => (
# spent 509µs making 1 call to Class::MOP::Mixin::HasAttributes::add_attribute # spent 20µs making 1 call to Moose::Meta::Role::Method::Required::meta # spent 8µs making 1 call to Class::MOP::_definition_context
17 reader => 'name',
18 required => 1,
19 Class::MOP::_definition_context(),
20));
21
22sub new { shift->_new(@_) }
23
2418µs1;
25
26# ABSTRACT: A Moose metaclass for required methods in Roles
27
28__END__