← 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:14 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Event/StartCode.pm
StatementsExecuted 25 statements in 1.53ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11149µs49µsMarkdent::Event::StartCode::::BEGIN@2Markdent::Event::StartCode::BEGIN@2
11148µs24.8msMarkdent::Event::StartCode::::BEGIN@13Markdent::Event::StartCode::BEGIN@13
11145µs23.6msMarkdent::Event::StartCode::::BEGIN@12Markdent::Event::StartCode::BEGIN@12
11144µs224µsMarkdent::Event::StartCode::::BEGIN@11Markdent::Event::StartCode::BEGIN@11
11142µs15.5msMarkdent::Event::StartCode::::BEGIN@9Markdent::Event::StartCode::BEGIN@9
11140µs110µsMarkdent::Event::StartCode::::BEGIN@7Markdent::Event::StartCode::BEGIN@7
11139µs58µsMarkdent::Event::StartCode::::BEGIN@6Markdent::Event::StartCode::BEGIN@6
0000s0sMarkdent::Event::StartCode::::as_textMarkdent::Event::StartCode::as_text
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Markdent::Event::StartCode;
2
# spent 49µs within Markdent::Event::StartCode::BEGIN@2 which was called: # once (49µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 4
BEGIN {
3130µs $Markdent::Event::StartCode::VERSION = '0.17';
4175µs149µs}
# spent 49µs making 1 call to Markdent::Event::StartCode::BEGIN@2
5
6399µs277µs
# spent 58µs (39+19) within Markdent::Event::StartCode::BEGIN@6 which was called: # once (39µs+19µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 6
use strict;
# spent 58µs making 1 call to Markdent::Event::StartCode::BEGIN@6 # spent 19µs making 1 call to strict::import
73116µs2179µs
# spent 110µs (40+70) within Markdent::Event::StartCode::BEGIN@7 which was called: # once (40µs+70µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 7
use warnings;
# spent 110µs making 1 call to Markdent::Event::StartCode::BEGIN@7 # spent 70µs making 1 call to warnings::import
8
93148µs231.0ms
# spent 15.5ms (42µs+15.5) within Markdent::Event::StartCode::BEGIN@9 which was called: # once (42µs+15.5ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 9
use Markdent::Types qw( Str );
# spent 15.5ms making 1 call to Markdent::Event::StartCode::BEGIN@9 # spent 15.5ms making 1 call to MooseX::Types::Combine::import
10
113106µs2405µs
# spent 224µs (44+180) within Markdent::Event::StartCode::BEGIN@11 which was called: # once (44µs+180µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 11
use namespace::autoclean;
# spent 224µs making 1 call to Markdent::Event::StartCode::BEGIN@11 # spent 180µs making 1 call to namespace::autoclean::import
123157µs247.2ms
# spent 23.6ms (45µs+23.6) within Markdent::Event::StartCode::BEGIN@12 which was called: # once (45µs+23.6ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 12
use Moose;
# spent 23.6ms making 1 call to Markdent::Event::StartCode::BEGIN@12 # spent 23.6ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133452µs249.6ms
# spent 24.8ms (48µs+24.8) within Markdent::Event::StartCode::BEGIN@13 which was called: # once (48µs+24.8ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 13
use MooseX::StrictConstructor;
# spent 24.8ms making 1 call to Markdent::Event::StartCode::BEGIN@13 # spent 24.8ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15126µs28.07mshas delimiter => (
# spent 7.73ms making 1 call to Moose::has # spent 335µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21127µs135.2mswith 'Markdent::Role::Event';
# spent 35.2ms making 1 call to Moose::with
22
23125µs120.9mswith 'Markdent::Role::BalancedEvent' => { compare => [ 'delimiter' ] };
# spent 20.9ms making 1 call to Moose::with
24
25114µs15.04mswith 'Markdent::Role::EventAsText';
# spent 5.04ms making 1 call to Moose::with
26
27sub as_text { $_[0]->delimiter() }
28
29125µs214.8ms__PACKAGE__->meta()->make_immutable();
# spent 14.7ms making 1 call to Class::MOP::Class::make_immutable # spent 89µs making 1 call to Markdent::Event::StartCode::meta
30
311171µs1;
32
33# ABSTRACT: An event for the start of a code span
34
- -
37=pod
38
- -
90163µs117.3ms__END__