← 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/StartLink.pm
StatementsExecuted 27 statements in 1.81ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111134µs19.7msMarkdent::Event::StartLink::::BEGIN@9Markdent::Event::StartLink::BEGIN@9
11166µs66µsMarkdent::Event::StartLink::::BEGIN@2Markdent::Event::StartLink::BEGIN@2
11155µs148µsMarkdent::Event::StartLink::::BEGIN@7Markdent::Event::StartLink::BEGIN@7
11152µs77µsMarkdent::Event::StartLink::::BEGIN@6Markdent::Event::StartLink::BEGIN@6
11148µs229µsMarkdent::Event::StartLink::::BEGIN@11Markdent::Event::StartLink::BEGIN@11
11148µs22.4msMarkdent::Event::StartLink::::BEGIN@13Markdent::Event::StartLink::BEGIN@13
11146µs23.8msMarkdent::Event::StartLink::::BEGIN@12Markdent::Event::StartLink::BEGIN@12
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::StartLink;
2
# spent 66µs within Markdent::Event::StartLink::BEGIN@2 which was called: # once (66µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 4
BEGIN {
3134µs $Markdent::Event::StartLink::VERSION = '0.17';
41111µs166µs}
# spent 66µs making 1 call to Markdent::Event::StartLink::BEGIN@2
5
63145µs2101µs
# spent 77µs (52+24) within Markdent::Event::StartLink::BEGIN@6 which was called: # once (52µs+24µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 6
use strict;
# spent 77µs making 1 call to Markdent::Event::StartLink::BEGIN@6 # spent 24µs making 1 call to strict::import
73249µs2240µs
# spent 148µs (55+93) within Markdent::Event::StartLink::BEGIN@7 which was called: # once (55µs+93µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 7
use warnings;
# spent 148µs making 1 call to Markdent::Event::StartLink::BEGIN@7 # spent 93µs making 1 call to warnings::import
8
93156µs239.2ms
# spent 19.7ms (134µs+19.5) within Markdent::Event::StartLink::BEGIN@9 which was called: # once (134µs+19.5ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 9
use Markdent::Types qw( Str Bool );
# spent 19.7ms making 1 call to Markdent::Event::StartLink::BEGIN@9 # spent 19.5ms making 1 call to MooseX::Types::Combine::import
10
113129µs2410µs
# spent 229µs (48+181) within Markdent::Event::StartLink::BEGIN@11 which was called: # once (48µs+181µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 11
use namespace::autoclean;
# spent 229µs making 1 call to Markdent::Event::StartLink::BEGIN@11 # spent 181µs making 1 call to namespace::autoclean::import
123160µs247.6ms
# spent 23.8ms (46µs+23.8) within Markdent::Event::StartLink::BEGIN@12 which was called: # once (46µs+23.8ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 12
use Moose;
# spent 23.8ms making 1 call to Markdent::Event::StartLink::BEGIN@12 # spent 23.8ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133504µs244.7ms
# spent 22.4ms (48µs+22.3) within Markdent::Event::StartLink::BEGIN@13 which was called: # once (48µs+22.3ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 13
use MooseX::StrictConstructor;
# spent 22.4ms making 1 call to Markdent::Event::StartLink::BEGIN@13 # spent 22.3ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15124µs28.23mshas uri => (
# spent 7.89ms making 1 call to Moose::has # spent 334µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21124µs212.2mshas title => (
# spent 11.8ms making 1 call to Moose::has # spent 348µs making 1 call to __TYPE__::Str
22 is => 'ro',
23 isa => Str,
24 predicate => 'has_title',
25);
26
27124µs212.1mshas id => (
# spent 11.8ms making 1 call to Moose::has # spent 327µs making 1 call to __TYPE__::Str
28 is => 'ro',
29 isa => Str,
30 predicate => 'has_id',
31);
32
33113µs18.01mshas is_implicit_id => (
# spent 8.01ms making 1 call to Moose::has
34 is => 'ro',
35 isa => 'Bool',
36 default => 0,
37);
38
39115µs131.6mswith 'Markdent::Role::Event';
# spent 31.6ms making 1 call to Moose::with
40
41114µs118.8mswith 'Markdent::Role::BalancedEvent';
# spent 18.8ms making 1 call to Moose::with
42
43125µs220.2ms__PACKAGE__->meta()->make_immutable();
# spent 20.1ms making 1 call to Class::MOP::Class::make_immutable # spent 90µs making 1 call to Markdent::Event::StartLink::meta
44
451114µs1;
46
47# ABSTRACT: An event for the start of a link
48
- -
51=pod
52
- -
109167µs19.69ms__END__