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

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/Carp/Heavy.pm
StatementsExecuted 5 statements in 77µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1119µs9µsCarp::Heavy::::BEGIN@3Carp::Heavy::BEGIN@3
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Carp::Heavy;
2
3270µs19µs
# spent 9µs within Carp::Heavy::BEGIN@3 which was called: # once (9µs+0s) by Perl::Critic::Policy::Documentation::PodSpelling::BEGIN@18 at line 3
use Carp ();
# spent 9µs making 1 call to Carp::Heavy::BEGIN@3
4
51500nsour $VERSION = '1.36';
6
7# Carp::Heavy was merged into Carp in version 1.12. Any mismatched versions
8# after this point are not significant and can be ignored.
912µsif(($Carp::VERSION || 0) < 1.12) {
10 my $cv = defined($Carp::VERSION) ? $Carp::VERSION : "undef";
11 die "Version mismatch between Carp $cv ($INC{q(Carp.pm)}) and Carp::Heavy $VERSION ($INC{q(Carp/Heavy.pm)}). Did you alter \@INC after Carp was loaded?\n";
12}
13
1415µs1;
15
16# Most of the machinery of Carp used to be here.
17# It has been moved in Carp.pm now, but this placeholder remains for
18# the benefit of modules that like to preload Carp::Heavy directly.
19# This must load Carp, because some modules rely on the historical
20# behaviour of Carp::Heavy loading Carp.