← 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:10 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Perl/Critic/Exception/Fatal/Generic.pm
StatementsExecuted 13 statements in 324µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111918µs6.21msPerl::Critic::Exception::Fatal::Generic::::BEGIN@20Perl::Critic::Exception::Fatal::Generic::BEGIN@20
11132µs32µsPerl::Critic::Exception::Fatal::Generic::::BEGIN@10Perl::Critic::Exception::Fatal::Generic::BEGIN@10
11113µs48µsPerl::Critic::Exception::Fatal::Generic::::BEGIN@14Perl::Critic::Exception::Fatal::Generic::BEGIN@14
11113µs23µsPerl::Critic::Exception::Fatal::Generic::::BEGIN@12Perl::Critic::Exception::Fatal::Generic::BEGIN@12
11110µs26µsPerl::Critic::Exception::Fatal::Generic::::BEGIN@11Perl::Critic::Exception::Fatal::Generic::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::Fatal::Generic;
9
10263µs132µs
# spent 32µs within Perl::Critic::Exception::Fatal::Generic::BEGIN@10 which was called: # once (32µs+0s) by Perl::Critic::Utils::BEGIN@25 at line 10
use 5.006001;
# spent 32µs making 1 call to Perl::Critic::Exception::Fatal::Generic::BEGIN@10
11227µs243µs
# spent 26µs (10+16) within Perl::Critic::Exception::Fatal::Generic::BEGIN@11 which was called: # once (10µs+16µs) by Perl::Critic::Utils::BEGIN@25 at line 11
use strict;
# spent 26µs making 1 call to Perl::Critic::Exception::Fatal::Generic::BEGIN@11 # spent 16µs making 1 call to strict::import
12227µs232µs
# spent 23µs (13+10) within Perl::Critic::Exception::Fatal::Generic::BEGIN@12 which was called: # once (13µs+10µs) by Perl::Critic::Utils::BEGIN@25 at line 12
use warnings;
# spent 23µs making 1 call to Perl::Critic::Exception::Fatal::Generic::BEGIN@12 # spent 10µs making 1 call to warnings::import
13
14264µs284µs
# spent 48µs (13+35) within Perl::Critic::Exception::Fatal::Generic::BEGIN@14 which was called: # once (13µs+35µs) by Perl::Critic::Utils::BEGIN@25 at line 14
use Readonly;
# spent 48µs making 1 call to Perl::Critic::Exception::Fatal::Generic::BEGIN@14 # spent 35µs making 1 call to Exporter::import
15
161300nsour $VERSION = '1.121';
17
18#-----------------------------------------------------------------------------
19
20
# spent 6.21ms (918µs+5.29) within Perl::Critic::Exception::Fatal::Generic::BEGIN@20 which was called: # once (918µs+5.29ms) by Perl::Critic::Utils::BEGIN@25 at line 26
use Exception::Class (
21195µs 'Perl::Critic::Exception::Fatal::Generic' => {
22 isa => 'Perl::Critic::Exception::Fatal',
23 description => 'A general problem was found.',
24 alias => 'throw_generic',
25 },
26142µs27.29ms);
# spent 6.21ms making 1 call to Perl::Critic::Exception::Fatal::Generic::BEGIN@20 # spent 1.09ms making 1 call to Exception::Class::import
27
28#-----------------------------------------------------------------------------
29
3013µs143µsReadonly::Array our @EXPORT_OK => qw< throw_generic >;
# spent 43µs making 1 call to Readonly::Array
31
32#-----------------------------------------------------------------------------
33
34
3513µs1;
36
37__END__