← Index
NYTProf Performance Profile   « line view »
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:11 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Perl/Critic/Exception.pm
StatementsExecuted 12 statements in 178µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs15µsPerl::Critic::Exception::::BEGIN@10Perl::Critic::Exception::BEGIN@10
1118µs15µsPerl::Critic::Exception::::BEGIN@25Perl::Critic::Exception::BEGIN@25
1118µs177µsPerl::Critic::Exception::::BEGIN@18Perl::Critic::Exception::BEGIN@18
1118µs11µsPerl::Critic::Exception::::BEGIN@12Perl::Critic::Exception::BEGIN@12
1116µs17µsPerl::Critic::Exception::::BEGIN@11Perl::Critic::Exception::BEGIN@11
0000s0sPerl::Critic::Exception::::short_class_namePerl::Critic::Exception::short_class_name
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1##############################################################################
2# $URL$
3# $Date$
4# $Author$
5# $Revision$
6##############################################################################
7
8package Perl::Critic::Exception;
9
10236µs115µs
# spent 15µs within Perl::Critic::Exception::BEGIN@10 which was called: # once (15µs+0s) by base::import at line 10
use 5.006001;
# spent 15µs making 1 call to Perl::Critic::Exception::BEGIN@10
11222µs228µs
# spent 17µs (6+11) within Perl::Critic::Exception::BEGIN@11 which was called: # once (6µs+11µs) by base::import at line 11
use strict;
# spent 17µs making 1 call to Perl::Critic::Exception::BEGIN@11 # spent 11µs making 1 call to strict::import
12240µs215µs
# spent 11µs (8+4) within Perl::Critic::Exception::BEGIN@12 which was called: # once (8µs+4µs) by base::import at line 12
use warnings;
# spent 11µs making 1 call to Perl::Critic::Exception::BEGIN@12 # spent 4µs making 1 call to warnings::import
13
141300nsour $VERSION = '1.121';
15
16#-----------------------------------------------------------------------------
17
18
# spent 177µs (8+169) within Perl::Critic::Exception::BEGIN@18 which was called: # once (8µs+169µs) by base::import at line 23
use Exception::Class (
191300ns 'Perl::Critic::Exception' => {
20 isa => 'Exception::Class::Base',
21 description => 'A problem discovered by Perl::Critic.',
22 },
23127µs2177µs);
# spent 177µs making 1 call to Perl::Critic::Exception::BEGIN@18 # spent 169µs making 1 call to Exception::Class::import, recursion: max depth 2, sum of overlapping time 169µs
24
25250µs222µs
# spent 15µs (8+7) within Perl::Critic::Exception::BEGIN@25 which was called: # once (8µs+7µs) by base::import at line 25
use Exporter 'import';
# spent 15µs making 1 call to Perl::Critic::Exception::BEGIN@25 # spent 7µs making 1 call to Exporter::import
26
27#-----------------------------------------------------------------------------
28
29sub short_class_name {
30 my ( $self ) = @_;
31
32 return substr ref $self, (length 'Perl::Critic') + 2;
33}
34
35#-----------------------------------------------------------------------------
36
37
3812µs1;
39
40__END__