← 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/Image.pm
StatementsExecuted 27 statements in 1.57ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11149µs49µsMarkdent::Event::Image::::BEGIN@2Markdent::Event::Image::BEGIN@2
11146µs23.2msMarkdent::Event::Image::::BEGIN@13Markdent::Event::Image::BEGIN@13
11144µs16.2msMarkdent::Event::Image::::BEGIN@9Markdent::Event::Image::BEGIN@9
11143µs222µsMarkdent::Event::Image::::BEGIN@11Markdent::Event::Image::BEGIN@11
11143µs21.4msMarkdent::Event::Image::::BEGIN@12Markdent::Event::Image::BEGIN@12
11141µs93µsMarkdent::Event::Image::::BEGIN@6Markdent::Event::Image::BEGIN@6
11141µs110µsMarkdent::Event::Image::::BEGIN@7Markdent::Event::Image::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::Image;
2
# spent 49µs within Markdent::Event::Image::BEGIN@2 which was called: # once (49µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 4
BEGIN {
3130µs $Markdent::Event::Image::VERSION = '0.17';
4176µs149µs}
# spent 49µs making 1 call to Markdent::Event::Image::BEGIN@2
5
63100µs2145µs
# spent 93µs (41+52) within Markdent::Event::Image::BEGIN@6 which was called: # once (41µs+52µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 6
use strict;
# spent 93µs making 1 call to Markdent::Event::Image::BEGIN@6 # spent 52µs making 1 call to strict::import
73114µs2180µs
# spent 110µs (41+70) within Markdent::Event::Image::BEGIN@7 which was called: # once (41µs+70µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 7
use warnings;
# spent 110µs making 1 call to Markdent::Event::Image::BEGIN@7 # spent 70µs making 1 call to warnings::import
8
93151µs232.3ms
# spent 16.2ms (44µs+16.1) within Markdent::Event::Image::BEGIN@9 which was called: # once (44µs+16.1ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 9
use Markdent::Types qw( Str Bool );
# spent 16.2ms making 1 call to Markdent::Event::Image::BEGIN@9 # spent 16.1ms making 1 call to MooseX::Types::Combine::import
10
113107µs2401µs
# spent 222µs (43+179) within Markdent::Event::Image::BEGIN@11 which was called: # once (43µs+179µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 11
use namespace::autoclean;
# spent 222µs making 1 call to Markdent::Event::Image::BEGIN@11 # spent 179µs making 1 call to namespace::autoclean::import
123154µs242.7ms
# spent 21.4ms (43µs+21.3) within Markdent::Event::Image::BEGIN@12 which was called: # once (43µs+21.3ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 12
use Moose;
# spent 21.4ms making 1 call to Markdent::Event::Image::BEGIN@12 # spent 21.3ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133484µs246.3ms
# spent 23.2ms (46µs+23.1) within Markdent::Event::Image::BEGIN@13 which was called: # once (46µs+23.1ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 13
use MooseX::StrictConstructor;
# spent 23.2ms making 1 call to Markdent::Event::Image::BEGIN@13 # spent 23.1ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15127µs28.37mshas uri => (
# spent 8.04ms 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
21125µs28.25mshas alt_text => (
# spent 7.92ms making 1 call to Moose::has # spent 330µs making 1 call to __TYPE__::Str
22 is => 'ro',
23 isa => Str,
24 required => 1,
25);
26
27124µs212.4mshas title => (
# spent 12.0ms making 1 call to Moose::has # spent 333µs making 1 call to __TYPE__::Str
28 is => 'ro',
29 isa => Str,
30 predicate => 'has_title',
31);
32
33124µs212.3mshas id => (
# spent 11.9ms making 1 call to Moose::has # spent 329µs making 1 call to __TYPE__::Str
34 is => 'ro',
35 isa => Str,
36 predicate => 'has_id',
37);
38
39114µs18.11mshas is_implicit_id => (
# spent 8.11ms making 1 call to Moose::has
40 is => 'ro',
41 isa => 'Bool',
42 default => 0,
43);
44
45118µs133.2mswith 'Markdent::Role::Event';
# spent 33.2ms making 1 call to Moose::with
46
47136µs225.8ms__PACKAGE__->meta()->make_immutable();
# spent 25.6ms making 1 call to Class::MOP::Class::make_immutable # spent 134µs making 1 call to Markdent::Event::Image::meta
48
491118µs1;
50
51# ABSTRACT: An event for an image
52
- -
55=pod
56
- -
116166µs19.63ms__END__