← 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:12:17 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Event/EndEmphasis.pm
StatementsExecuted 25 statements in 1.49ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11151µs51µsMarkdent::Event::EndEmphasis::::BEGIN@2Markdent::Event::EndEmphasis::BEGIN@2
11148µs24.6msMarkdent::Event::EndEmphasis::::BEGIN@13Markdent::Event::EndEmphasis::BEGIN@13
11145µs229µsMarkdent::Event::EndEmphasis::::BEGIN@11Markdent::Event::EndEmphasis::BEGIN@11
11145µs22.6msMarkdent::Event::EndEmphasis::::BEGIN@12Markdent::Event::EndEmphasis::BEGIN@12
11143µs15.2msMarkdent::Event::EndEmphasis::::BEGIN@9Markdent::Event::EndEmphasis::BEGIN@9
11141µs59µsMarkdent::Event::EndEmphasis::::BEGIN@6Markdent::Event::EndEmphasis::BEGIN@6
11140µs110µsMarkdent::Event::EndEmphasis::::BEGIN@7Markdent::Event::EndEmphasis::BEGIN@7
0000s0sMarkdent::Event::EndEmphasis::::as_textMarkdent::Event::EndEmphasis::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::EndEmphasis;
2
# spent 51µs within Markdent::Event::EndEmphasis::BEGIN@2 which was called: # once (51µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 4
BEGIN {
3148µs $Markdent::Event::EndEmphasis::VERSION = '0.17';
4179µs151µs}
# spent 51µs making 1 call to Markdent::Event::EndEmphasis::BEGIN@2
5
6397µs277µs
# spent 59µs (41+18) within Markdent::Event::EndEmphasis::BEGIN@6 which was called: # once (41µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 6
use strict;
# spent 59µs making 1 call to Markdent::Event::EndEmphasis::BEGIN@6 # spent 18µs making 1 call to strict::import
73155µs2179µs
# spent 110µs (40+69) within Markdent::Event::EndEmphasis::BEGIN@7 which was called: # once (40µs+69µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 7
use warnings;
# spent 110µs making 1 call to Markdent::Event::EndEmphasis::BEGIN@7 # spent 69µs making 1 call to warnings::import
8
93153µs230.4ms
# spent 15.2ms (43µs+15.2) within Markdent::Event::EndEmphasis::BEGIN@9 which was called: # once (43µs+15.2ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 9
use Markdent::Types qw( Str );
# spent 15.2ms making 1 call to Markdent::Event::EndEmphasis::BEGIN@9 # spent 15.2ms making 1 call to MooseX::Types::Combine::import
10
113107µs2412µs
# spent 229µs (45+184) within Markdent::Event::EndEmphasis::BEGIN@11 which was called: # once (45µs+184µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 11
use namespace::autoclean;
# spent 229µs making 1 call to Markdent::Event::EndEmphasis::BEGIN@11 # spent 184µs making 1 call to namespace::autoclean::import
123159µs245.2ms
# spent 22.6ms (45µs+22.6) within Markdent::Event::EndEmphasis::BEGIN@12 which was called: # once (45µs+22.6ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 12
use Moose;
# spent 22.6ms making 1 call to Markdent::Event::EndEmphasis::BEGIN@12 # spent 22.6ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133422µs249.1ms
# spent 24.6ms (48µs+24.5) within Markdent::Event::EndEmphasis::BEGIN@13 which was called: # once (48µs+24.5ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@14 at line 13
use MooseX::StrictConstructor;
# spent 24.6ms making 1 call to Markdent::Event::EndEmphasis::BEGIN@13 # spent 24.5ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15125µs28.05mshas delimiter => (
# spent 7.72ms making 1 call to Moose::has # spent 333µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21115µs135.3mswith 'Markdent::Role::Event';
# spent 35.3ms making 1 call to Moose::with
22
23124µs120.8mswith 'Markdent::Role::BalancedEvent' => { compare => [ 'delimiter' ] };
# spent 20.8ms making 1 call to Moose::with
24
25115µs15.19mswith 'Markdent::Role::EventAsText';
# spent 5.19ms making 1 call to Moose::with
26
27sub as_text { $_[0]->delimiter() }
28
29125µs214.2ms__PACKAGE__->meta()->make_immutable();
# spent 14.1ms making 1 call to Class::MOP::Class::make_immutable # spent 89µs making 1 call to Markdent::Event::EndEmphasis::meta
30
31197µs1;
32
33# ABSTRACT: An event for the end of an emphasis span
34
- -
37=pod
38
- -
90163µs117.3ms__END__