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

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Event/HTMLTag.pm
StatementsExecuted 24 statements in 1.45ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11148µs25.2msMarkdent::Event::HTMLTag::::BEGIN@13Markdent::Event::HTMLTag::BEGIN@13
11148µs118µsMarkdent::Event::HTMLTag::::BEGIN@7Markdent::Event::HTMLTag::BEGIN@7
11147µs47µsMarkdent::Event::HTMLTag::::BEGIN@2Markdent::Event::HTMLTag::BEGIN@2
11144µs224µsMarkdent::Event::HTMLTag::::BEGIN@11Markdent::Event::HTMLTag::BEGIN@11
11144µs29.1msMarkdent::Event::HTMLTag::::BEGIN@12Markdent::Event::HTMLTag::BEGIN@12
11141µs16.1msMarkdent::Event::HTMLTag::::BEGIN@9Markdent::Event::HTMLTag::BEGIN@9
11139µs57µsMarkdent::Event::HTMLTag::::BEGIN@6Markdent::Event::HTMLTag::BEGIN@6
0000s0sMarkdent::Event::HTMLTag::::__ANON__[:24]Markdent::Event::HTMLTag::__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::HTMLTag;
2
# spent 47µs within Markdent::Event::HTMLTag::BEGIN@2 which was called: # once (47µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 4
BEGIN {
3126µs $Markdent::Event::HTMLTag::VERSION = '0.17';
4173µs147µs}
# spent 47µs making 1 call to Markdent::Event::HTMLTag::BEGIN@2
5
63122µs275µs
# spent 57µs (39+18) within Markdent::Event::HTMLTag::BEGIN@6 which was called: # once (39µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 6
use strict;
# spent 57µs making 1 call to Markdent::Event::HTMLTag::BEGIN@6 # spent 18µs making 1 call to strict::import
73116µs2187µs
# spent 118µs (48+70) within Markdent::Event::HTMLTag::BEGIN@7 which was called: # once (48µs+70µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 7
use warnings;
# spent 118µs making 1 call to Markdent::Event::HTMLTag::BEGIN@7 # spent 70µs making 1 call to warnings::import
8
93150µs232.2ms
# spent 16.1ms (41µs+16.1) within Markdent::Event::HTMLTag::BEGIN@9 which was called: # once (41µs+16.1ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 9
use Markdent::Types qw( Str HashRef );
# spent 16.1ms making 1 call to Markdent::Event::HTMLTag::BEGIN@9 # spent 16.1ms making 1 call to MooseX::Types::Combine::import
10
113104µs2403µs
# spent 224µs (44+179) within Markdent::Event::HTMLTag::BEGIN@11 which was called: # once (44µs+179µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 11
use namespace::autoclean;
# spent 224µs making 1 call to Markdent::Event::HTMLTag::BEGIN@11 # spent 179µs making 1 call to namespace::autoclean::import
123156µs258.1ms
# spent 29.1ms (44µs+29.0) within Markdent::Event::HTMLTag::BEGIN@12 which was called: # once (44µs+29.0ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 12
use Moose;
# spent 29.1ms making 1 call to Markdent::Event::HTMLTag::BEGIN@12 # spent 29.0ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133430µs250.4ms
# spent 25.2ms (48µs+25.2) within Markdent::Event::HTMLTag::BEGIN@13 which was called: # once (48µs+25.2ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@20 at line 13
use MooseX::StrictConstructor;
# spent 25.2ms making 1 call to Markdent::Event::HTMLTag::BEGIN@13 # spent 25.2ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15124µs28.04mshas tag => (
# spent 7.70ms 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 { {} },
25131µs29.90ms);
# spent 9.57ms making 1 call to Moose::has # spent 334µs making 1 call to __TYPE__::HashRef
26
27115µs135.7mswith 'Markdent::Role::Event';
# spent 35.7ms making 1 call to Moose::with
28
29124µ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::HTMLTag::meta
30
311109µs1;
32
33# ABSTRACT: An event for an inline self-closing HTML tag
34
- -
37=pod
38
- -
86166µs120.4ms__END__