← 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/IO.pm
StatementsExecuted 19 statements in 282µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11114µs14µsPerl::Critic::Exception::IO::::BEGIN@10Perl::Critic::Exception::IO::BEGIN@10
11110µs237µsPerl::Critic::Exception::IO::::BEGIN@24Perl::Critic::Exception::IO::BEGIN@24
1117µs257µsPerl::Critic::Exception::IO::::BEGIN@18Perl::Critic::Exception::IO::BEGIN@18
1117µs26µsPerl::Critic::Exception::IO::::BEGIN@16Perl::Critic::Exception::IO::BEGIN@16
1117µs11µsPerl::Critic::Exception::IO::::BEGIN@12Perl::Critic::Exception::IO::BEGIN@12
1116µs28µsPerl::Critic::Exception::IO::::BEGIN@14Perl::Critic::Exception::IO::BEGIN@14
1116µs17µsPerl::Critic::Exception::IO::::BEGIN@11Perl::Critic::Exception::IO::BEGIN@11
1116µs355µsPerl::Critic::Exception::IO::::BEGIN@15Perl::Critic::Exception::IO::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::IO;
9
10236µs114µs
# spent 14µs within Perl::Critic::Exception::IO::BEGIN@10 which was called: # once (14µs+0s) by Perl::Critic::Utils::POD::BEGIN@22 at line 10
use 5.006001;
# spent 14µs making 1 call to Perl::Critic::Exception::IO::BEGIN@10
11218µs228µs
# spent 17µs (6+11) within Perl::Critic::Exception::IO::BEGIN@11 which was called: # once (6µs+11µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 11
use strict;
# spent 17µs making 1 call to Perl::Critic::Exception::IO::BEGIN@11 # spent 11µs making 1 call to strict::import
12223µs215µs
# spent 11µs (7+4) within Perl::Critic::Exception::IO::BEGIN@12 which was called: # once (7µs+4µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 12
use warnings;
# spent 11µs making 1 call to Perl::Critic::Exception::IO::BEGIN@12 # spent 4µs making 1 call to warnings::import
13
14220µs249µs
# spent 28µs (6+21) within Perl::Critic::Exception::IO::BEGIN@14 which was called: # once (6µs+21µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 14
use Carp qw{ confess };
# spent 28µs making 1 call to Perl::Critic::Exception::IO::BEGIN@14 # spent 21µs making 1 call to Exporter::import
15221µs2703µs
# spent 355µs (6+348) within Perl::Critic::Exception::IO::BEGIN@15 which was called: # once (6µs+348µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 15
use English qw(-no_match_vars);
# spent 355µs making 1 call to Perl::Critic::Exception::IO::BEGIN@15 # spent 348µs making 1 call to English::import
16220µs244µs
# spent 26µs (7+18) within Perl::Critic::Exception::IO::BEGIN@16 which was called: # once (7µs+18µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 16
use Readonly;
# spent 26µs making 1 call to Perl::Critic::Exception::IO::BEGIN@16 # spent 18µs making 1 call to Exporter::import
17
18259µs2507µs
# spent 257µs (7+250) within Perl::Critic::Exception::IO::BEGIN@18 which was called: # once (7µs+250µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 18
use Perl::Critic::Utils qw{ :characters };
# spent 257µs making 1 call to Perl::Critic::Exception::IO::BEGIN@18 # spent 250µs making 1 call to Exporter::import
19
201700nsour $VERSION = '1.121';
21
22#-----------------------------------------------------------------------------
23
24
# spent 237µs (10+227) within Perl::Critic::Exception::IO::BEGIN@24 which was called: # once (10µs+227µs) by Perl::Critic::Utils::POD::BEGIN@22 at line 31
use Exception::Class (
251300ns 'Perl::Critic::Exception::IO' => {
26 isa => 'Perl::Critic::Exception',
27 description => 'An input/output problem.',
28 fields => [ qw< file_name errno > ],
29 alias => 'throw_io',
30 },
31174µs2464µs);
# spent 237µs making 1 call to Perl::Critic::Exception::IO::BEGIN@24 # spent 227µs making 1 call to Exception::Class::import
32
33#-----------------------------------------------------------------------------
34
3514µs137µsReadonly::Array our @EXPORT_OK => qw< throw_io >;
# spent 37µs making 1 call to Readonly::Array
36
37#-----------------------------------------------------------------------------
38
3914µs1;
40
41#-----------------------------------------------------------------------------
42
43__END__