← 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:30 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.55ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11156µs56µsMarkdent::Event::StartLink::::BEGIN@2Markdent::Event::StartLink::BEGIN@2
11150µs25.1msMarkdent::Event::StartLink::::BEGIN@13Markdent::Event::StartLink::BEGIN@13
11146µs22.7msMarkdent::Event::StartLink::::BEGIN@12Markdent::Event::StartLink::BEGIN@12
11144µs227µsMarkdent::Event::StartLink::::BEGIN@11Markdent::Event::StartLink::BEGIN@11
11141µs16.2msMarkdent::Event::StartLink::::BEGIN@9Markdent::Event::StartLink::BEGIN@9
11140µs58µsMarkdent::Event::StartLink::::BEGIN@6Markdent::Event::StartLink::BEGIN@6
11140µs109µsMarkdent::Event::StartLink::::BEGIN@7Markdent::Event::StartLink::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::StartLink;
2
# spent 56µs within Markdent::Event::StartLink::BEGIN@2 which was called: # once (56µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 4
BEGIN {
3128µs $Markdent::Event::StartLink::VERSION = '0.17';
4180µs156µs}
# spent 56µs making 1 call to Markdent::Event::StartLink::BEGIN@2
5
6396µs276µs
# spent 58µs (40+18) within Markdent::Event::StartLink::BEGIN@6 which was called: # once (40µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 6
use strict;
# spent 58µs making 1 call to Markdent::Event::StartLink::BEGIN@6 # spent 18µs making 1 call to strict::import
73112µs2178µs
# spent 109µs (40+69) within Markdent::Event::StartLink::BEGIN@7 which was called: # once (40µs+69µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 7
use warnings;
# spent 109µs making 1 call to Markdent::Event::StartLink::BEGIN@7 # spent 69µs making 1 call to warnings::import
8
93149µs232.4ms
# spent 16.2ms (41µs+16.2) within Markdent::Event::StartLink::BEGIN@9 which was called: # once (41µs+16.2ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 9
use Markdent::Types qw( Str Bool );
# spent 16.2ms making 1 call to Markdent::Event::StartLink::BEGIN@9 # spent 16.2ms making 1 call to MooseX::Types::Combine::import
10
113108µs2410µs
# spent 227µs (44+183) within Markdent::Event::StartLink::BEGIN@11 which was called: # once (44µs+183µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 11
use namespace::autoclean;
# spent 227µs making 1 call to Markdent::Event::StartLink::BEGIN@11 # spent 183µs making 1 call to namespace::autoclean::import
123186µs245.3ms
# spent 22.7ms (46µs+22.6) within Markdent::Event::StartLink::BEGIN@12 which was called: # once (46µs+22.6ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 12
use Moose;
# spent 22.7ms making 1 call to Markdent::Event::StartLink::BEGIN@12 # spent 22.6ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133472µs250.1ms
# spent 25.1ms (50µs+25.0) within Markdent::Event::StartLink::BEGIN@13 which was called: # once (50µs+25.0ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@25 at line 13
use MooseX::StrictConstructor;
# spent 25.1ms making 1 call to Markdent::Event::StartLink::BEGIN@13 # spent 25.0ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15123µs28.04mshas uri => (
# spent 7.71ms making 1 call to Moose::has # spent 332µs making 1 call to __TYPE__::Str
16 is => 'ro',
17 isa => Str,
18 required => 1,
19);
20
21124µs210.7mshas title => (
# spent 10.4ms making 1 call to Moose::has # spent 328µs making 1 call to __TYPE__::Str
22 is => 'ro',
23 isa => Str,
24 predicate => 'has_title',
25);
26
27124µs210.8mshas id => (
# spent 10.5ms making 1 call to Moose::has # spent 334µs making 1 call to __TYPE__::Str
28 is => 'ro',
29 isa => Str,
30 predicate => 'has_id',
31);
32
33113µs17.90mshas is_implicit_id => (
# spent 7.90ms making 1 call to Moose::has
34 is => 'ro',
35 isa => 'Bool',
36 default => 0,
37);
38
39114µs135.7mswith 'Markdent::Role::Event';
# spent 35.7ms making 1 call to Moose::with
40
41114µs120.0mswith 'Markdent::Role::BalancedEvent';
# spent 20.0ms making 1 call to Moose::with
42
43124µs218.7ms__PACKAGE__->meta()->make_immutable();
# spent 18.7ms making 1 call to Class::MOP::Class::make_immutable # spent 88µs making 1 call to Markdent::Event::StartLink::meta
44
451112µs1;
46
47# ABSTRACT: An event for the start of a link
48
- -
51=pod
52
- -
109168µs119.1ms__END__