← 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/Configuration.pm
StatementsExecuted 10 statements in 134µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11115µs15µsPerl::Critic::Exception::Configuration::::BEGIN@10Perl::Critic::Exception::Configuration::BEGIN@10
1119µs222µsPerl::Critic::Exception::Configuration::::BEGIN@18Perl::Critic::Exception::Configuration::BEGIN@18
1118µs11µsPerl::Critic::Exception::Configuration::::BEGIN@12Perl::Critic::Exception::Configuration::BEGIN@12
1117µs18µsPerl::Critic::Exception::Configuration::::BEGIN@11Perl::Critic::Exception::Configuration::BEGIN@11
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::Configuration;
9
10240µs115µs
# spent 15µs within Perl::Critic::Exception::Configuration::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::Configuration::BEGIN@10
11219µs230µs
# spent 18µs (7+12) within Perl::Critic::Exception::Configuration::BEGIN@11 which was called: # once (7µs+12µs) by base::import at line 11
use strict;
# spent 18µs making 1 call to Perl::Critic::Exception::Configuration::BEGIN@11 # spent 12µs making 1 call to strict::import
12245µs215µs
# spent 11µs (8+4) within Perl::Critic::Exception::Configuration::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::Configuration::BEGIN@12 # spent 4µs making 1 call to warnings::import
13
141300nsour $VERSION = '1.121';
15
16#-----------------------------------------------------------------------------
17
18
# spent 222µs (9+212) within Perl::Critic::Exception::Configuration::BEGIN@18 which was called: # once (9µs+212µs) by base::import at line 24
use Exception::Class (
191300ns 'Perl::Critic::Exception::Configuration' => {
20 isa => 'Perl::Critic::Exception',
21 description => 'A problem with Perl::Critic configuration, whether from a file or a command line or some other source.',
22 fields => [ qw{ source } ],
23 },
24128µs2222µs);
# spent 222µs making 1 call to Perl::Critic::Exception::Configuration::BEGIN@18 # spent 212µs making 1 call to Exception::Class::import, recursion: max depth 1, sum of overlapping time 212µs
25
26#-----------------------------------------------------------------------------
27
2812µs1;
29
30__END__