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

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/MooseX/StrictConstructor.pm
StatementsExecuted 24 statements in 1.98ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1111.57ms17.5msMooseX::StrictConstructor::::BEGIN@13MooseX::StrictConstructor::BEGIN@13
1111.47ms17.3msMooseX::StrictConstructor::::BEGIN@12MooseX::StrictConstructor::BEGIN@12
11154µs118µsMooseX::StrictConstructor::::BEGIN@9MooseX::StrictConstructor::BEGIN@9
11146µs46µsMooseX::StrictConstructor::::BEGIN@2MooseX::StrictConstructor::BEGIN@2
11140µs58µsMooseX::StrictConstructor::::BEGIN@6MooseX::StrictConstructor::BEGIN@6
11138µs105µsMooseX::StrictConstructor::::BEGIN@7MooseX::StrictConstructor::BEGIN@7
11136µs155µsMooseX::StrictConstructor::::BEGIN@10MooseX::StrictConstructor::BEGIN@10
11126µs26µsMooseX::StrictConstructor::::BEGIN@11MooseX::StrictConstructor::BEGIN@11
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package MooseX::StrictConstructor;
2
# spent 46µs within MooseX::StrictConstructor::BEGIN@2 which was called: # once (46µs+0s) by Markdent::Event::StartDocument::BEGIN@11 at line 4
BEGIN {
3128µs $MooseX::StrictConstructor::VERSION = '0.11';
4175µs146µs}
# spent 46µs making 1 call to MooseX::StrictConstructor::BEGIN@2
5
6394µs276µs
# spent 58µs (40+18) within MooseX::StrictConstructor::BEGIN@6 which was called: # once (40µs+18µs) by Markdent::Event::StartDocument::BEGIN@11 at line 6
use strict;
# spent 58µs making 1 call to MooseX::StrictConstructor::BEGIN@6 # spent 18µs making 1 call to strict::import
73101µs2172µs
# spent 105µs (38+67) within MooseX::StrictConstructor::BEGIN@7 which was called: # once (38µs+67µs) by Markdent::Event::StartDocument::BEGIN@11 at line 7
use warnings;
# spent 105µs making 1 call to MooseX::StrictConstructor::BEGIN@7 # spent 67µs making 1 call to warnings::import
8
93186µs2181µs
# spent 118µs (54+63) within MooseX::StrictConstructor::BEGIN@9 which was called: # once (54µs+63µs) by Markdent::Event::StartDocument::BEGIN@11 at line 9
use Moose 0.94 ();
# spent 118µs making 1 call to MooseX::StrictConstructor::BEGIN@9 # spent 64µs making 1 call to UNIVERSAL::VERSION
103117µs2274µs
# spent 155µs (36+119) within MooseX::StrictConstructor::BEGIN@10 which was called: # once (36µs+119µs) by Markdent::Event::StartDocument::BEGIN@11 at line 10
use Moose::Exporter;
# spent 155µs making 1 call to MooseX::StrictConstructor::BEGIN@10 # spent 119µs making 1 call to Moose::Exporter::import
113105µs126µs
# spent 26µs within MooseX::StrictConstructor::BEGIN@11 which was called: # once (26µs+0s) by Markdent::Event::StartDocument::BEGIN@11 at line 11
use Moose::Util::MetaRole;
# spent 26µs making 1 call to MooseX::StrictConstructor::BEGIN@11
123576µs117.3ms
# spent 17.3ms (1.47+15.9) within MooseX::StrictConstructor::BEGIN@12 which was called: # once (1.47ms+15.9ms) by Markdent::Event::StartDocument::BEGIN@11 at line 12
use MooseX::StrictConstructor::Role::Object;
# spent 17.3ms making 1 call to MooseX::StrictConstructor::BEGIN@12
133650µs117.5ms
# spent 17.5ms (1.57+16.0) within MooseX::StrictConstructor::BEGIN@13 which was called: # once (1.57ms+16.0ms) by Markdent::Event::StartDocument::BEGIN@11 at line 13
use MooseX::StrictConstructor::Role::Meta::Method::Constructor;
# spent 17.5ms making 1 call to MooseX::StrictConstructor::BEGIN@13
14
15125µs12.56msMoose::Exporter->setup_import_methods(
# spent 2.56ms making 1 call to Moose::Exporter::setup_import_methods
16 class_metaroles => {
17 constructor =>
18 ['MooseX::StrictConstructor::Role::Meta::Method::Constructor']
19 },
20 base_class_roles => ['MooseX::StrictConstructor::Role::Object'],
21);
22
23121µs1;
24
25# ABSTRACT: Make your object constructors blow up on unknown attributes
26
- -
29=pod
30
- -
103__END__