← 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:15:02 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Event/EndCode.pm
StatementsExecuted 25 statements in 1.46ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11149µs49µsMarkdent::Event::EndCode::::BEGIN@2Markdent::Event::EndCode::BEGIN@2
11147µs24.8msMarkdent::Event::EndCode::::BEGIN@13Markdent::Event::EndCode::BEGIN@13
11147µs22.6msMarkdent::Event::EndCode::::BEGIN@12Markdent::Event::EndCode::BEGIN@12
11145µs254µsMarkdent::Event::EndCode::::BEGIN@11Markdent::Event::EndCode::BEGIN@11
11143µs15.3msMarkdent::Event::EndCode::::BEGIN@9Markdent::Event::EndCode::BEGIN@9
11142µs148µsMarkdent::Event::EndCode::::BEGIN@7Markdent::Event::EndCode::BEGIN@7
11141µs59µsMarkdent::Event::EndCode::::BEGIN@6Markdent::Event::EndCode::BEGIN@6
0000s0sMarkdent::Event::EndCode::::as_textMarkdent::Event::EndCode::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::EndCode;
2
# spent 49µs within Markdent::Event::EndCode::BEGIN@2 which was called: # once (49µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 4
BEGIN {
3130µs $Markdent::Event::EndCode::VERSION = '0.17';
4174µs149µs}
# spent 49µs making 1 call to Markdent::Event::EndCode::BEGIN@2
5
6397µs276µs
# spent 59µs (41+18) within Markdent::Event::EndCode::BEGIN@6 which was called: # once (41µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 6
use strict;
# spent 59µs making 1 call to Markdent::Event::EndCode::BEGIN@6 # spent 18µs making 1 call to strict::import
73116µs2253µs
# spent 148µs (42+105) within Markdent::Event::EndCode::BEGIN@7 which was called: # once (42µs+105µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 7
use warnings;
# spent 148µs making 1 call to Markdent::Event::EndCode::BEGIN@7 # spent 105µs making 1 call to warnings::import
8
93150µs230.5ms
# spent 15.3ms (43µs+15.2) within Markdent::Event::EndCode::BEGIN@9 which was called: # once (43µs+15.2ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 9
use Markdent::Types qw( Str );
# spent 15.3ms making 1 call to Markdent::Event::EndCode::BEGIN@9 # spent 15.2ms making 1 call to MooseX::Types::Combine::import
10
113114µs2463µs
# spent 254µs (45+209) within Markdent::Event::EndCode::BEGIN@11 which was called: # once (45µs+209µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 11
use namespace::autoclean;
# spent 254µs making 1 call to Markdent::Event::EndCode::BEGIN@11 # spent 209µs making 1 call to namespace::autoclean::import
123156µs245.2ms
# spent 22.6ms (47µs+22.6) within Markdent::Event::EndCode::BEGIN@12 which was called: # once (47µs+22.6ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 12
use Moose;
# spent 22.6ms making 1 call to Markdent::Event::EndCode::BEGIN@12 # spent 22.6ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133455µs249.6ms
# spent 24.8ms (47µs+24.8) within Markdent::Event::EndCode::BEGIN@13 which was called: # once (47µs+24.8ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@13 at line 13
use MooseX::StrictConstructor;
# spent 24.8ms making 1 call to Markdent::Event::EndCode::BEGIN@13 # spent 24.8ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15125µs28.09mshas delimiter => (
# spent 7.75ms 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
21115µs135.1mswith 'Markdent::Role::Event';
# spent 35.1ms making 1 call to Moose::with
22
23125µs1123mswith 'Markdent::Role::BalancedEvent' => { compare => [ 'delimiter' ] };
# spent 123ms making 1 call to Moose::with
24
25114µs139.8mswith 'Markdent::Role::EventAsText';
# spent 39.8ms making 1 call to Moose::with
26
27sub as_text { $_[0]->delimiter() }
28
29125µs214.1ms__PACKAGE__->meta()->make_immutable();
# spent 14.0ms making 1 call to Class::MOP::Class::make_immutable # spent 88µs making 1 call to Markdent::Event::EndCode::meta
30
31196µs1;
32
33# ABSTRACT: An event for the end of a code span
34
- -
37=pod
38
- -
90164µs117.5ms__END__