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

Filename/var/www/foswikidev/core/lib/Foswiki/Plugins/CommentPlugin/JQuery.pm
StatementsExecuted 10 statements in 166µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11123µs55µsFoswiki::Plugins::CommentPlugin::JQuery::::newFoswiki::Plugins::CommentPlugin::JQuery::new
11116µs30µsFoswiki::Plugins::CommentPlugin::JQuery::::BEGIN@6Foswiki::Plugins::CommentPlugin::JQuery::BEGIN@6
1114µs4µsFoswiki::Plugins::CommentPlugin::JQuery::::BEGIN@8Foswiki::Plugins::CommentPlugin::JQuery::BEGIN@8
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# See Plugin topic for history and plugin information
4
5package Foswiki::Plugins::CommentPlugin::JQuery;
6229µs243µs
# spent 30µs (16+13) within Foswiki::Plugins::CommentPlugin::JQuery::BEGIN@6 which was called: # once (16µs+13µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1 at line 6
use strict;
# spent 30µs making 1 call to Foswiki::Plugins::CommentPlugin::JQuery::BEGIN@6 # spent 13µs making 1 call to strict::import
7
82101µs14µs
# spent 4µs within Foswiki::Plugins::CommentPlugin::JQuery::BEGIN@8 which was called: # once (4µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1 at line 8
use Foswiki::Plugins::JQueryPlugin::Plugin ();
# spent 4µs making 1 call to Foswiki::Plugins::CommentPlugin::JQuery::BEGIN@8
9110µsour @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin );
10
11
# spent 55µs (23+31) within Foswiki::Plugins::CommentPlugin::JQuery::new which was called: # once (23µs+31µs) by Foswiki::Plugins::JQueryPlugin::Plugins::load at line 290 of /var/www/foswikidev/core/lib/Foswiki/Plugins/JQueryPlugin/Plugins.pm
sub new {
121500ns my $class = shift;
131400ns my $session = shift || $Foswiki::Plugins::SESSION;
14
15118µs131µs my $this = $class->SUPER::new(
# spent 31µs making 1 call to Foswiki::Plugins::JQueryPlugin::Plugin::new
16 $session,
17 name => 'Comment',
18 version => '3.0',
19 author => 'Crawford Currie',
20 homepage => 'http://foswiki.org/Extensions/CommentPlugin',
21 puburl => '%PUBURLPATH%/%SYSTEMWEB%/CommentPlugin',
22 documentation => "$Foswiki::cfg{SystemWebName}.CommentPlugin",
23 css => ["comment.css"],
24 javascript => ["comment.js"]
25 );
26
2713µs return $this;
28}
29
3013µs1;
31__END__