← 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/Parse.pm
StatementsExecuted 19 statements in 342µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1116.92ms75.2msPerl::Critic::Exception::Parse::::BEGIN@18Perl::Critic::Exception::Parse::BEGIN@18
11118µs18µsPerl::Critic::Exception::Parse::::BEGIN@10Perl::Critic::Exception::Parse::BEGIN@10
11110µs214µsPerl::Critic::Exception::Parse::::BEGIN@24Perl::Critic::Exception::Parse::BEGIN@24
1119µs17µsPerl::Critic::Exception::Parse::::BEGIN@12Perl::Critic::Exception::Parse::BEGIN@12
1118µs437µsPerl::Critic::Exception::Parse::::BEGIN@14Perl::Critic::Exception::Parse::BEGIN@14
1118µs26µsPerl::Critic::Exception::Parse::::BEGIN@16Perl::Critic::Exception::Parse::BEGIN@16
1118µs22µsPerl::Critic::Exception::Parse::::BEGIN@11Perl::Critic::Exception::Parse::BEGIN@11
1117µs28µsPerl::Critic::Exception::Parse::::BEGIN@15Perl::Critic::Exception::Parse::BEGIN@15
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::Parse;
9
10245µs118µs
# spent 18µs within Perl::Critic::Exception::Parse::BEGIN@10 which was called: # once (18µs+0s) by Perl::Critic::Command::BEGIN@21 at line 10
use 5.006001;
# spent 18µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@10
11223µs235µs
# spent 22µs (8+14) within Perl::Critic::Exception::Parse::BEGIN@11 which was called: # once (8µs+14µs) by Perl::Critic::Command::BEGIN@21 at line 11
use strict;
# spent 22µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@11 # spent 14µs making 1 call to strict::import
12226µs225µs
# spent 17µs (9+8) within Perl::Critic::Exception::Parse::BEGIN@12 which was called: # once (9µs+8µs) by Perl::Critic::Command::BEGIN@21 at line 12
use warnings;
# spent 17µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@12 # spent 8µs making 1 call to warnings::import
13
14226µs2866µs
# spent 437µs (8+429) within Perl::Critic::Exception::Parse::BEGIN@14 which was called: # once (8µs+429µs) by Perl::Critic::Command::BEGIN@21 at line 14
use English qw< -no_match_vars >;
# spent 437µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@14 # spent 429µs making 1 call to English::import
15220µs248µs
# spent 28µs (7+20) within Perl::Critic::Exception::Parse::BEGIN@15 which was called: # once (7µs+20µs) by Perl::Critic::Command::BEGIN@21 at line 15
use Carp qw< confess >;
# spent 28µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@15 # spent 20µs making 1 call to Exporter::import
16222µs245µs
# spent 26µs (8+18) within Perl::Critic::Exception::Parse::BEGIN@16 which was called: # once (8µs+18µs) by Perl::Critic::Command::BEGIN@21 at line 16
use Readonly;
# spent 26µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@16 # spent 18µs making 1 call to Exporter::import
17
182125µs279.4ms
# spent 75.2ms (6.92+68.3) within Perl::Critic::Exception::Parse::BEGIN@18 which was called: # once (6.92ms+68.3ms) by Perl::Critic::Command::BEGIN@21 at line 18
use Perl::Critic::Utils qw< :characters >;
# spent 75.2ms making 1 call to Perl::Critic::Exception::Parse::BEGIN@18 # spent 4.24ms making 1 call to Exporter::import
19
201300nsour $VERSION = '1.121';
21
22#-----------------------------------------------------------------------------
23
24
# spent 214µs (10+204) within Perl::Critic::Exception::Parse::BEGIN@24 which was called: # once (10µs+204µs) by Perl::Critic::Command::BEGIN@21 at line 31
use Exception::Class (
251400ns 'Perl::Critic::Exception::Parse' => {
26 isa => 'Perl::Critic::Exception',
27 description => 'A problem parsing source code.',
28 fields => [ qw< file_name > ],
29 alias => 'throw_parse',
30 },
31149µs2418µs);
# spent 214µs making 1 call to Perl::Critic::Exception::Parse::BEGIN@24 # spent 204µs making 1 call to Exception::Class::import
32
33#-----------------------------------------------------------------------------
34
3512µs126µsReadonly::Array our @EXPORT_OK => qw< throw_parse >;
# spent 26µs making 1 call to Readonly::Array
36
37#-----------------------------------------------------------------------------
38
3914µs1;
40
41#-----------------------------------------------------------------------------
42
43__END__