← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 22:00:36 2010
Reported on Wed Nov 17 22:14:46 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.42ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11153µs24.0msMarkdent::Event::StartCode::::BEGIN@13Markdent::Event::StartCode::BEGIN@13
11150µs50µsMarkdent::Event::StartCode::::BEGIN@2Markdent::Event::StartCode::BEGIN@2
11147µs15.5msMarkdent::Event::StartCode::::BEGIN@9Markdent::Event::StartCode::BEGIN@9
11144µs21.3msMarkdent::Event::StartCode::::BEGIN@12Markdent::Event::StartCode::BEGIN@12
11144µs230µsMarkdent::Event::StartCode::::BEGIN@11Markdent::Event::StartCode::BEGIN@11
11139µs107µsMarkdent::Event::StartCode::::BEGIN@7Markdent::Event::StartCode::BEGIN@7
11138µs55µ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 50µs within Markdent::Event::StartCode::BEGIN@2 which was called: # once (50µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 4
BEGIN {
3130µs $Markdent::Event::StartCode::VERSION = '0.17';
4174µs150µs}
# spent 50µs making 1 call to Markdent::Event::StartCode::BEGIN@2
5
6396µs273µs
# spent 55µs (38+18) within Markdent::Event::StartCode::BEGIN@6 which was called: # once (38µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 6
use strict;
# spent 55µs making 1 call to Markdent::Event::StartCode::BEGIN@6 # spent 18µs making 1 call to strict::import
73109µs2175µs
# spent 107µs (39+68) within Markdent::Event::StartCode::BEGIN@7 which was called: # once (39µs+68µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 7
use warnings;
# spent 107µs making 1 call to Markdent::Event::StartCode::BEGIN@7 # spent 68µs making 1 call to warnings::import
8
93153µs230.9ms
# spent 15.5ms (47µs+15.4) within Markdent::Event::StartCode::BEGIN@9 which was called: # once (47µs+15.4ms) 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.4ms making 1 call to MooseX::Types::Combine::import
10
113109µs2417µs
# spent 230µs (44+186) within Markdent::Event::StartCode::BEGIN@11 which was called: # once (44µs+186µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 11
use namespace::autoclean;
# spent 230µs making 1 call to Markdent::Event::StartCode::BEGIN@11 # spent 186µs making 1 call to namespace::autoclean::import
123158µs242.6ms
# spent 21.3ms (44µs+21.3) within Markdent::Event::StartCode::BEGIN@12 which was called: # once (44µs+21.3ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 12
use Moose;
# spent 21.3ms making 1 call to Markdent::Event::StartCode::BEGIN@12 # spent 21.3ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133421µs248.0ms
# spent 24.0ms (53µs+24.0) within Markdent::Event::StartCode::BEGIN@13 which was called: # once (53µs+24.0ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@22 at line 13
use MooseX::StrictConstructor;
# spent 24.0ms making 1 call to Markdent::Event::StartCode::BEGIN@13 # spent 24.0ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15124µs28.27mshas delimiter => (
# spent 7.93ms making 1 call to Moose::has # spent 336µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21115µs130.6mswith 'Markdent::Role::Event';
# spent 30.6ms making 1 call to Moose::with
22
23125µs119.5mswith 'Markdent::Role::BalancedEvent' => { compare => [ 'delimiter' ] };
# spent 19.5ms making 1 call to Moose::with
24
25114µs14.42mswith 'Markdent::Role::EventAsText';
# spent 4.42ms making 1 call to Moose::with
26
27sub as_text { $_[0]->delimiter() }
28
29124µs214.9ms__PACKAGE__->meta()->make_immutable();
# spent 14.8ms making 1 call to Class::MOP::Class::make_immutable # spent 85µs making 1 call to Markdent::Event::StartCode::meta
30
31198µs1;
32
33# ABSTRACT: An event for the start of a code span
34
- -
37=pod
38
- -
90167µs19.20ms__END__