← Index
NYTProf Performance Profile   « line view »
For ./view
  Run on Fri Jul 31 18:42:36 2015
Reported on Fri Jul 31 18:48:14 2015

Filename/var/www/foswikidev/core/lib/Foswiki/Configure/Root.pm
StatementsExecuted 8 statements in 129µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11113µs27µsFoswiki::Configure::Root::::BEGIN@12Foswiki::Configure::Root::BEGIN@12
11110µs15µsFoswiki::Configure::Root::::BEGIN@13Foswiki::Configure::Root::BEGIN@13
1114µs4µsFoswiki::Configure::Root::::BEGIN@15Foswiki::Configure::Root::BEGIN@15
0000s0sFoswiki::Configure::Root::::newFoswiki::Configure::Root::new
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1# See bottom of file for license and copyright information
2
3=begin TML
4
5---+ package Foswiki::Configure::Root
6The root of the configuration item tree.
7
8=cut
9
10package Foswiki::Configure::Root;
11
12228µs240µs
# spent 27µs (13+14) within Foswiki::Configure::Root::BEGIN@12 which was called: # once (13µs+14µs) by Foswiki::Plugins::ConfigurePlugin::BEGIN@40 at line 12
use strict;
# spent 27µs making 1 call to Foswiki::Configure::Root::BEGIN@12 # spent 14µs making 1 call to strict::import
13225µs219µs
# spent 15µs (10+4) within Foswiki::Configure::Root::BEGIN@13 which was called: # once (10µs+4µs) by Foswiki::Plugins::ConfigurePlugin::BEGIN@40 at line 13
use warnings;
# spent 15µs making 1 call to Foswiki::Configure::Root::BEGIN@13 # spent 4µs making 1 call to warnings::import
14
15266µs14µs
# spent 4µs within Foswiki::Configure::Root::BEGIN@15 which was called: # once (4µs+0s) by Foswiki::Plugins::ConfigurePlugin::BEGIN@40 at line 15
use Foswiki::Configure::Section ();
# spent 4µs making 1 call to Foswiki::Configure::Root::BEGIN@15
1617µsour @ISA = ('Foswiki::Configure::Section');
17
18sub new {
19 my ($class) = @_;
20 return $class->SUPER::new( headline => '' );
21}
22
2313µs1;
24__END__