← Index
NYTProf Performance Profile   « block view • line view • sub view »
For -e
  Run on Wed Nov 17 22:00:36 2010
Reported on Wed Nov 17 22:10:13 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Event/Text.pm
StatementsExecuted 25 statements in 1.44ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11148µs48µsMarkdent::Event::Text::::BEGIN@2Markdent::Event::Text::BEGIN@2
11146µs22.3msMarkdent::Event::Text::::BEGIN@13Markdent::Event::Text::BEGIN@13
11144µs21.7msMarkdent::Event::Text::::BEGIN@12Markdent::Event::Text::BEGIN@12
11144µs223µsMarkdent::Event::Text::::BEGIN@11Markdent::Event::Text::BEGIN@11
11142µs16.4msMarkdent::Event::Text::::BEGIN@9Markdent::Event::Text::BEGIN@9
11141µs110µsMarkdent::Event::Text::::BEGIN@7Markdent::Event::Text::BEGIN@7
11140µs58µsMarkdent::Event::Text::::BEGIN@6Markdent::Event::Text::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::Text;
2
# spent 48µs within Markdent::Event::Text::BEGIN@2 which was called: # once (48µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 4
BEGIN {
3128µs $Markdent::Event::Text::VERSION = '0.17';
4176µs148µs}
# spent 48µs making 1 call to Markdent::Event::Text::BEGIN@2
5
6395µs277µs
# spent 58µs (40+18) within Markdent::Event::Text::BEGIN@6 which was called: # once (40µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 6
use strict;
# spent 58µs making 1 call to Markdent::Event::Text::BEGIN@6 # spent 18µs making 1 call to strict::import
73112µs2178µs
# spent 110µs (41+69) within Markdent::Event::Text::BEGIN@7 which was called: # once (41µs+69µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 7
use warnings;
# spent 110µs making 1 call to Markdent::Event::Text::BEGIN@7 # spent 69µs making 1 call to warnings::import
8
93151µs232.8ms
# spent 16.4ms (42µs+16.4) within Markdent::Event::Text::BEGIN@9 which was called: # once (42µs+16.4ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 9
use Markdent::Types qw( Str ArrayRef );
# spent 16.4ms making 1 call to Markdent::Event::Text::BEGIN@9 # spent 16.4ms making 1 call to MooseX::Types::Combine::import
10
113109µs2402µs
# spent 223µs (44+179) within Markdent::Event::Text::BEGIN@11 which was called: # once (44µs+179µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 11
use namespace::autoclean;
# spent 223µs making 1 call to Markdent::Event::Text::BEGIN@11 # spent 179µs making 1 call to namespace::autoclean::import
123157µs243.3ms
# spent 21.7ms (44µs+21.6) within Markdent::Event::Text::BEGIN@12 which was called: # once (44µs+21.6ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 12
use Moose;
# spent 21.7ms making 1 call to Markdent::Event::Text::BEGIN@12 # spent 21.6ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133394µs244.5ms
# spent 22.3ms (46µs+22.2) within Markdent::Event::Text::BEGIN@13 which was called: # once (46µs+22.2ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 13
use MooseX::StrictConstructor;
# spent 22.3ms making 1 call to Markdent::Event::Text::BEGIN@13 # spent 22.2ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15125µs28.29mshas text => (
# spent 7.96ms making 1 call to Moose::has # spent 336µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21126µs212.1mshas _converted_from => (
# spent 11.8ms making 1 call to Moose::has # spent 328µs making 1 call to __TYPE__::Str
22 is => 'ro',
23 isa => Str,
24 predicate => '_has_converted_from',
25);
26
27139µs317.3mshas _merged_from => (
# spent 11.9ms making 1 call to Moose::has # spent 5.10ms making 1 call to __TYPE__::ArrayRef # spent 336µs making 1 call to __TYPE__::Str
28 is => 'ro',
29 isa => ArrayRef[Str],
30 predicate => '_has_merged_from',
31);
32
33115µs130.4mswith 'Markdent::Role::Event';
# spent 30.4ms making 1 call to Moose::with
34
35124µs218.6ms__PACKAGE__->meta()->make_immutable();
# spent 18.6ms making 1 call to Class::MOP::Class::make_immutable # spent 90µs making 1 call to Markdent::Event::Text::meta
36
371120µs1;
38
39# ABSTRACT: An event for plaint text
40
- -
43=pod
44
- -
87166µs19.68ms__END__