← 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:24 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.68ms
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11148µs25.3msMarkdent::Event::Image::::BEGIN@13Markdent::Event::Image::BEGIN@13
11146µs46µsMarkdent::Event::Image::::BEGIN@2Markdent::Event::Image::BEGIN@2
11146µs229µsMarkdent::Event::Image::::BEGIN@11Markdent::Event::Image::BEGIN@11
11144µs22.8msMarkdent::Event::Image::::BEGIN@12Markdent::Event::Image::BEGIN@12
11141µs110µsMarkdent::Event::Image::::BEGIN@7Markdent::Event::Image::BEGIN@7
11141µs16.2msMarkdent::Event::Image::::BEGIN@9Markdent::Event::Image::BEGIN@9
11141µs59µsMarkdent::Event::Image::::BEGIN@6Markdent::Event::Image::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::Image;
2
# spent 46µs within Markdent::Event::Image::BEGIN@2 which was called: # once (46µs+0s) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 4
BEGIN {
3127µs $Markdent::Event::Image::VERSION = '0.17';
41150µs146µs}
# spent 46µs making 1 call to Markdent::Event::Image::BEGIN@2
5
6399µs278µs
# spent 59µs (41+18) within Markdent::Event::Image::BEGIN@6 which was called: # once (41µs+18µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 6
use strict;
# spent 59µs making 1 call to Markdent::Event::Image::BEGIN@6 # spent 19µs making 1 call to strict::import
73113µs2180µs
# spent 110µs (41+69) within Markdent::Event::Image::BEGIN@7 which was called: # once (41µs+69µ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 69µs making 1 call to warnings::import
8
93150µs232.4ms
# spent 16.2ms (41µs+16.2) within Markdent::Event::Image::BEGIN@9 which was called: # once (41µs+16.2ms) 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.2ms making 1 call to MooseX::Types::Combine::import
10
113107µs2412µs
# spent 229µs (46+183) within Markdent::Event::Image::BEGIN@11 which was called: # once (46µs+183µs) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 11
use namespace::autoclean;
# spent 229µs making 1 call to Markdent::Event::Image::BEGIN@11 # spent 183µs making 1 call to namespace::autoclean::import
123156µs245.5ms
# spent 22.8ms (44µs+22.7) within Markdent::Event::Image::BEGIN@12 which was called: # once (44µs+22.7ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 12
use Moose;
# spent 22.8ms making 1 call to Markdent::Event::Image::BEGIN@12 # spent 22.7ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
133535µs250.6ms
# spent 25.3ms (48µs+25.3) within Markdent::Event::Image::BEGIN@13 which was called: # once (48µs+25.3ms) by Markdent::Dialect::Standard::SpanParser::BEGIN@21 at line 13
use MooseX::StrictConstructor;
# spent 25.3ms making 1 call to Markdent::Event::Image::BEGIN@13 # spent 25.3ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
14
15125µs28.04mshas uri => (
# spent 7.71ms 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µs28.22mshas alt_text => (
# spent 7.89ms 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µs210.9mshas title => (
# spent 10.6ms making 1 call to Moose::has # spent 327µs making 1 call to __TYPE__::Str
28 is => 'ro',
29 isa => Str,
30 predicate => 'has_title',
31);
32
33124µs210.8mshas id => (
# spent 10.5ms making 1 call to Moose::has # spent 331µs making 1 call to __TYPE__::Str
34 is => 'ro',
35 isa => Str,
36 predicate => 'has_id',
37);
38
39114µs17.94mshas is_implicit_id => (
# spent 7.94ms making 1 call to Moose::has
40 is => 'ro',
41 isa => 'Bool',
42 default => 0,
43);
44
45115µs136.0mswith 'Markdent::Role::Event';
# spent 36.0ms making 1 call to Moose::with
46
47125µs219.3ms__PACKAGE__->meta()->make_immutable();
# spent 19.2ms making 1 call to Class::MOP::Class::make_immutable # spent 90µs making 1 call to Markdent::Event::Image::meta
48
491118µs1;
50
51# ABSTRACT: An event for an image
52
- -
55=pod
56
- -
116172µs119.4ms__END__