← 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/StartHTMLTag.pm
StatementsExecuted 24 statements in 1.45ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11150µs230µsMarkdent::Event::StartHTMLTag::::BEGIN@11Markdent::Event::StartHTMLTag::BEGIN@11
11149µs26.0msMarkdent::Event::StartHTMLTag::::BEGIN@13Markdent::Event::StartHTMLTag::BEGIN@13
11147µs22.9msMarkdent::Event::StartHTMLTag::::BEGIN@12Markdent::Event::StartHTMLTag::BEGIN@12
11146µs46µsMarkdent::Event::StartHTMLTag::::BEGIN@2Markdent::Event::StartHTMLTag::BEGIN@2
11140µs16.3msMarkdent::Event::StartHTMLTag::::BEGIN@9Markdent::Event::StartHTMLTag::BEGIN@9
11140µs109µsMarkdent::Event::StartHTMLTag::::BEGIN@7Markdent::Event::StartHTMLTag::BEGIN@7
11139µs57µsMarkdent::Event::StartHTMLTag::::BEGIN@6Markdent::Event::StartHTMLTag::BEGIN@6
0000s0sMarkdent::Event::StartHTMLTag::::__ANON__[:24]Markdent::Event::StartHTMLTag::__ANON__[:24]
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::StartHTMLTag;
2
# spent 46µs within Markdent::Event::StartHTMLTag::BEGIN@2 which was called: # once (46µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 4
BEGIN {
3129µs $Markdent::Event::StartHTMLTag::VERSION = '0.17';
4174µs146µs}
# spent 46µs making 1 call to Markdent::Event::StartHTMLTag::BEGIN@2
5
63103µs275µs
# spent 57µs (39+18) within Markdent::Event::StartHTMLTag::BEGIN@6 which was called: # once (39µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 6
use strict;
# spent 57µs making 1 call to Markdent::Event::StartHTMLTag::BEGIN@6 # spent 18µs making 1 call to strict::import
73112µs2178µs
# spent 109µs (40+69) within Markdent::Event::StartHTMLTag::BEGIN@7 which was called: # once (40µs+69µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 7
use warnings;
# spent 109µs making 1 call to Markdent::Event::StartHTMLTag::BEGIN@7 # spent 69µs making 1 call to warnings::import
8
93156µs232.6ms
# spent 16.3ms (40µs+16.3) within Markdent::Event::StartHTMLTag::BEGIN@9 which was called: # once (40µs+16.3ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 9
use Markdent::Types qw( Str HashRef );
# spent 16.3ms making 1 call to Markdent::Event::StartHTMLTag::BEGIN@9 # spent 16.3ms making 1 call to MooseX::Types::Combine::import
10
113111µs2410µs
# spent 230µs (50+180) within Markdent::Event::StartHTMLTag::BEGIN@11 which was called: # once (50µs+180µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 11
use namespace::autoclean;
# spent 230µs making 1 call to Markdent::Event::StartHTMLTag::BEGIN@11 # spent 180µs making 1 call to namespace::autoclean::import
123159µs245.7ms
# spent 22.9ms (47µs+22.8) within Markdent::Event::StartHTMLTag::BEGIN@12 which was called: # once (47µs+22.8ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 12
use Moose;
# spent 22.9ms making 1 call to Markdent::Event::StartHTMLTag::BEGIN@12 # spent 22.8ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133431µs252.0ms
# spent 26.0ms (49µs+26.0) within Markdent::Event::StartHTMLTag::BEGIN@13 which was called: # once (49µs+26.0ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@24 at line 13
use MooseX::StrictConstructor;
# spent 26.0ms making 1 call to Markdent::Event::StartHTMLTag::BEGIN@13 # spent 26.0ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15125µs28.07mshas tag => (
# 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
21has attributes => (
22 is => 'ro',
23 isa => HashRef,
24 default => sub { {} },
25133µs28.58ms);
# spent 8.25ms making 1 call to Moose::has # spent 332µs making 1 call to __TYPE__::HashRef
26
27118µs137.8mswith 'Markdent::Role::Event';
# spent 37.8ms making 1 call to Moose::with
28
29125µs216.0ms__PACKAGE__->meta()->make_immutable();
# spent 15.9ms making 1 call to Class::MOP::Class::make_immutable # spent 89µs making 1 call to Markdent::Event::StartHTMLTag::meta
30
311108µs1;
32
33# ABSTRACT: An event for the start of an inline HTML tag
34
- -
37=pod
38
- -
86163µs119.3ms__END__