← 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:14:35 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Event/HTMLBlock.pm
StatementsExecuted 23 statements in 1.27ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11199µs27.7msMarkdent::Event::HTMLBlock::::BEGIN@12Markdent::Event::HTMLBlock::BEGIN@12
11159µs28.8msMarkdent::Event::HTMLBlock::::BEGIN@13Markdent::Event::HTMLBlock::BEGIN@13
11146µs46µsMarkdent::Event::HTMLBlock::::BEGIN@2Markdent::Event::HTMLBlock::BEGIN@2
11145µs227µsMarkdent::Event::HTMLBlock::::BEGIN@11Markdent::Event::HTMLBlock::BEGIN@11
11139µs15.6msMarkdent::Event::HTMLBlock::::BEGIN@9Markdent::Event::HTMLBlock::BEGIN@9
11138µs107µsMarkdent::Event::HTMLBlock::::BEGIN@7Markdent::Event::HTMLBlock::BEGIN@7
11138µs55µsMarkdent::Event::HTMLBlock::::BEGIN@6Markdent::Event::HTMLBlock::BEGIN@6
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::HTMLBlock;
2
# spent 46µs within Markdent::Event::HTMLBlock::BEGIN@2 which was called: # once (46µs+0s) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 4
BEGIN {
3128µs $Markdent::Event::HTMLBlock::VERSION = '0.17';
4170µs146µs}
# spent 46µs making 1 call to Markdent::Event::HTMLBlock::BEGIN@2
5
6393µs273µs
# spent 55µs (38+18) within Markdent::Event::HTMLBlock::BEGIN@6 which was called: # once (38µs+18µs) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 6
use strict;
# spent 55µs making 1 call to Markdent::Event::HTMLBlock::BEGIN@6 # spent 18µs making 1 call to strict::import
73106µs2175µs
# spent 107µs (38+68) within Markdent::Event::HTMLBlock::BEGIN@7 which was called: # once (38µs+68µs) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 7
use warnings;
# spent 107µs making 1 call to Markdent::Event::HTMLBlock::BEGIN@7 # spent 68µs making 1 call to warnings::import
8
93148µs231.2ms
# spent 15.6ms (39µs+15.6) within Markdent::Event::HTMLBlock::BEGIN@9 which was called: # once (39µs+15.6ms) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 9
use Markdent::Types qw( Str );
# spent 15.6ms making 1 call to Markdent::Event::HTMLBlock::BEGIN@9 # spent 15.6ms making 1 call to MooseX::Types::Combine::import
10
113103µs2408µs
# spent 227µs (45+182) within Markdent::Event::HTMLBlock::BEGIN@11 which was called: # once (45µs+182µs) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 11
use namespace::autoclean;
# spent 227µs making 1 call to Markdent::Event::HTMLBlock::BEGIN@11 # spent 182µs making 1 call to namespace::autoclean::import
123215µs255.3ms
# spent 27.7ms (99µs+27.6) within Markdent::Event::HTMLBlock::BEGIN@12 which was called: # once (99µs+27.6ms) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 12
use Moose;
# spent 27.7ms making 1 call to Markdent::Event::HTMLBlock::BEGIN@12 # spent 27.6ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133288µs257.5ms
# spent 28.8ms (59µs+28.7) within Markdent::Event::HTMLBlock::BEGIN@13 which was called: # once (59µs+28.7ms) by Markdent::Dialect::Standard::BlockParser::BEGIN@25 at line 13
use MooseX::StrictConstructor;
# spent 28.8ms making 1 call to Markdent::Event::HTMLBlock::BEGIN@13 # spent 28.7ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15127µs28.03mshas html => (
# spent 7.70ms making 1 call to Moose::has # spent 330µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21117µs135.2mswith 'Markdent::Role::Event';
# spent 35.2ms making 1 call to Moose::with
22
23125µs214.7ms__PACKAGE__->meta()->make_immutable();
# spent 14.7ms making 1 call to Class::MOP::Class::make_immutable # spent 91µs making 1 call to Markdent::Event::HTMLBlock::meta
24
25187µs1;
26
27# ABSTRACT: An event for an HTML block
28
- -
31=pod
32
- -
75158µs116.9ms__END__