← 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:33 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.58ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11150µs243µsMarkdent::Event::Text::::BEGIN@11Markdent::Event::Text::BEGIN@11
11148µs22.7msMarkdent::Event::Text::::BEGIN@12Markdent::Event::Text::BEGIN@12
11147µs25.0msMarkdent::Event::Text::::BEGIN@13Markdent::Event::Text::BEGIN@13
11145µs45µsMarkdent::Event::Text::::BEGIN@2Markdent::Event::Text::BEGIN@2
11143µs16.2msMarkdent::Event::Text::::BEGIN@9Markdent::Event::Text::BEGIN@9
11142µs60µsMarkdent::Event::Text::::BEGIN@6Markdent::Event::Text::BEGIN@6
11139µs109µsMarkdent::Event::Text::::BEGIN@7Markdent::Event::Text::BEGIN@7
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 45µs within Markdent::Event::Text::BEGIN@2 which was called: # once (45µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 4
BEGIN {
3128µs $Markdent::Event::Text::VERSION = '0.17';
4175µs145µs}
# spent 45µs making 1 call to Markdent::Event::Text::BEGIN@2
5
6394µs278µs
# spent 60µs (42+18) within Markdent::Event::Text::BEGIN@6 which was called: # once (42µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 6
use strict;
# spent 60µs making 1 call to Markdent::Event::Text::BEGIN@6 # spent 18µs making 1 call to strict::import
73110µs2179µs
# spent 109µs (39+70) within Markdent::Event::Text::BEGIN@7 which was called: # once (39µs+70µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 7
use warnings;
# spent 109µs making 1 call to Markdent::Event::Text::BEGIN@7 # spent 70µs making 1 call to warnings::import
8
93247µs232.4ms
# spent 16.2ms (43µs+16.2) within Markdent::Event::Text::BEGIN@9 which was called: # once (43µs+16.2ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 9
use Markdent::Types qw( Str ArrayRef );
# spent 16.2ms making 1 call to Markdent::Event::Text::BEGIN@9 # spent 16.2ms making 1 call to MooseX::Types::Combine::import
10
113119µs2435µs
# spent 243µs (50+193) within Markdent::Event::Text::BEGIN@11 which was called: # once (50µs+193µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 11
use namespace::autoclean;
# spent 243µs making 1 call to Markdent::Event::Text::BEGIN@11 # spent 193µs making 1 call to namespace::autoclean::import
123160µs245.4ms
# spent 22.7ms (48µs+22.7) within Markdent::Event::Text::BEGIN@12 which was called: # once (48µs+22.7ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 12
use Moose;
# spent 22.7ms making 1 call to Markdent::Event::Text::BEGIN@12 # spent 22.7ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133429µs249.9ms
# spent 25.0ms (47µs+24.9) within Markdent::Event::Text::BEGIN@13 which was called: # once (47µs+24.9ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@27 at line 13
use MooseX::StrictConstructor;
# spent 25.0ms making 1 call to Markdent::Event::Text::BEGIN@13 # spent 24.9ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15124µs28.08mshas text => (
# spent 7.68ms making 1 call to Moose::has # spent 400µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21137µs210.9mshas _converted_from => (
# spent 10.6ms making 1 call to Moose::has # spent 332µs making 1 call to __TYPE__::Str
22 is => 'ro',
23 isa => Str,
24 predicate => '_has_converted_from',
25);
26
27137µs316.0mshas _merged_from => (
# spent 10.6ms making 1 call to Moose::has # spent 5.07ms making 1 call to __TYPE__::ArrayRef # spent 332µs making 1 call to __TYPE__::Str
28 is => 'ro',
29 isa => ArrayRef[Str],
30 predicate => '_has_merged_from',
31);
32
33115µs136.1mswith 'Markdent::Role::Event';
# spent 36.1ms making 1 call to Moose::with
34
35124µs216.3ms__PACKAGE__->meta()->make_immutable();
# spent 16.2ms making 1 call to Class::MOP::Class::make_immutable # spent 90µs making 1 call to Markdent::Event::Text::meta
36
371117µs1;
38
39# ABSTRACT: An event for plaint text
40
- -
43=pod
44
- -
87167µs119.2ms__END__