← 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:11 2010

Filename/home/doy/perl5/perlbrew/perls/perl-5.10.1/lib/site_perl/5.10.1/Markdent/Role/BlockParser.pm
StatementsExecuted 17 statements in 973µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11153µs53µsMarkdent::Role::BlockParser::::BEGIN@2Markdent::Role::BlockParser::BEGIN@2
11141µs13.8msMarkdent::Role::BlockParser::::BEGIN@10Markdent::Role::BlockParser::BEGIN@10
11141µs109µsMarkdent::Role::BlockParser::::BEGIN@7Markdent::Role::BlockParser::BEGIN@7
11140µs222µsMarkdent::Role::BlockParser::::BEGIN@9Markdent::Role::BlockParser::BEGIN@9
11138µs56µsMarkdent::Role::BlockParser::::BEGIN@6Markdent::Role::BlockParser::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::Role::BlockParser;
2
# spent 53µs within Markdent::Role::BlockParser::BEGIN@2 which was called: # once (53µs+0s) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 4
BEGIN {
3130µs $Markdent::Role::BlockParser::VERSION = '0.17';
4178µs153µs}
# spent 53µs making 1 call to Markdent::Role::BlockParser::BEGIN@2
5
6397µs275µs
# spent 56µs (38+18) within Markdent::Role::BlockParser::BEGIN@6 which was called: # once (38µs+18µs) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 6
use strict;
# spent 56µs making 1 call to Markdent::Role::BlockParser::BEGIN@6 # spent 18µs making 1 call to strict::import
73103µs2176µs
# spent 109µs (41+68) within Markdent::Role::BlockParser::BEGIN@7 which was called: # once (41µs+68µs) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 7
use warnings;
# spent 109µs making 1 call to Markdent::Role::BlockParser::BEGIN@7 # spent 68µs making 1 call to warnings::import
8
93104µs2403µs
# spent 222µs (40+181) within Markdent::Role::BlockParser::BEGIN@9 which was called: # once (40µs+181µs) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 9
use namespace::autoclean;
# spent 222µs making 1 call to Markdent::Role::BlockParser::BEGIN@9 # spent 181µs making 1 call to namespace::autoclean::import
103354µs227.5ms
# spent 13.8ms (41µs+13.7) within Markdent::Role::BlockParser::BEGIN@10 which was called: # once (41µs+13.7ms) by Class::MOP::__ANON__[/home/doy/coding/src/Class-MOP/blib/lib//Class/MOP.pm:118] at line 10
use Moose::Role;
# spent 13.8ms making 1 call to Markdent::Role::BlockParser::BEGIN@10 # spent 13.7ms making 1 call to Moose::Exporter::__ANON__[Moose/Exporter.pm:456]
11
12120µs187.4mswith 'Markdent::Role::AnyParser';
# spent 87.4ms making 1 call to Moose::Role::with
13
14116µs1468µsrequires 'parse_document';
# spent 468µs making 1 call to Moose::Role::requires
15
16120µs1977µshas _span_parser => (
# spent 977µs making 1 call to Moose::Role::has
17 is => 'ro',
18 does => 'Markdent::Role::SpanParser',
19 init_arg => 'span_parser',
20 required => 1,
21);
22
23192µs1;
24
25# ABSTRACT: A role for block parsers
26
- -
29=pod
30
- -
88158µs110.5ms__END__