← 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/Fatal/Internal.pm
StatementsExecuted 13 statements in 277µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11126µs26µsPerl::Critic::Exception::Fatal::Internal::::BEGIN@10Perl::Critic::Exception::Fatal::Internal::BEGIN@10
11114µs284µsPerl::Critic::Exception::Fatal::Internal::::BEGIN@20Perl::Critic::Exception::Fatal::Internal::BEGIN@20
11112µs18µsPerl::Critic::Exception::Fatal::Internal::::BEGIN@12Perl::Critic::Exception::Fatal::Internal::BEGIN@12
11111µs51µsPerl::Critic::Exception::Fatal::Internal::::BEGIN@14Perl::Critic::Exception::Fatal::Internal::BEGIN@14
11111µs31µsPerl::Critic::Exception::Fatal::Internal::::BEGIN@11Perl::Critic::Exception::Fatal::Internal::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::Internal;
9
10263µs126µs
# spent 26µs within Perl::Critic::Exception::Fatal::Internal::BEGIN@10 which was called: # once (26µs+0s) by Perl::Critic::Violation::BEGIN@30 at line 10
use 5.006001;
11232µs250µs
# spent 31µs (11+20) within Perl::Critic::Exception::Fatal::Internal::BEGIN@11 which was called: # once (11µs+20µs) by Perl::Critic::Violation::BEGIN@30 at line 11
use strict;
# spent 31µs making 1 call to Perl::Critic::Exception::Fatal::Internal::BEGIN@11 # spent 20µs making 1 call to strict::import
12230µs225µs
# spent 18µs (12+7) within Perl::Critic::Exception::Fatal::Internal::BEGIN@12 which was called: # once (12µs+7µs) by Perl::Critic::Violation::BEGIN@30 at line 12
use warnings;
# spent 18µs making 1 call to Perl::Critic::Exception::Fatal::Internal::BEGIN@12 # spent 6µs making 1 call to warnings::import
13
14275µs290µs
# spent 51µs (11+39) within Perl::Critic::Exception::Fatal::Internal::BEGIN@14 which was called: # once (11µs+39µs) by Perl::Critic::Violation::BEGIN@30 at line 14
use Readonly;
# spent 51µs making 1 call to Perl::Critic::Exception::Fatal::Internal::BEGIN@14 # spent 39µs making 1 call to Exporter::import
15
161500nsour $VERSION = '1.121';
17
18#-----------------------------------------------------------------------------
19
20
# spent 284µs (14+270) within Perl::Critic::Exception::Fatal::Internal::BEGIN@20 which was called: # once (14µs+270µs) by Perl::Critic::Violation::BEGIN@30 at line 26
use Exception::Class (
211500ns 'Perl::Critic::Exception::Fatal::Internal' => {
22 isa => 'Perl::Critic::Exception::Fatal',
23 description => 'A problem with the Perl::Critic code was found, a.k.a. a bug.',
24 alias => 'throw_internal',
25 },
26168µs2554µs);
# spent 284µs making 1 call to Perl::Critic::Exception::Fatal::Internal::BEGIN@20 # spent 270µs making 1 call to Exception::Class::import
27
28#-----------------------------------------------------------------------------
29
3013µs141µsReadonly::Array our @EXPORT_OK => qw< throw_internal >;
# spent 41µs making 1 call to Readonly::Array
31
32#-----------------------------------------------------------------------------
33
34
3515µs1;
36
37__END__