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

Filename/var/www/foswikidev/core/lib/Foswiki/Plugins/JQueryPlugin/METADATA.pm
StatementsExecuted 11 statements in 172µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11122µs40µsFoswiki::Plugins::JQueryPlugin::METADATA::::newFoswiki::Plugins::JQueryPlugin::METADATA::new
11115µs28µsFoswiki::Plugins::JQueryPlugin::METADATA::::BEGIN@3Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@3
11111µs15µsFoswiki::Plugins::JQueryPlugin::METADATA::::BEGIN@4Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@4
1116µs6µsFoswiki::Plugins::JQueryPlugin::METADATA::::BEGIN@6Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@6
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
2package Foswiki::Plugins::JQueryPlugin::METADATA;
3228µs240µs
# spent 28µs (15+12) within Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@3 which was called: # once (15µs+12µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.85 at line 3
use strict;
# spent 28µs making 1 call to Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@3 # spent 12µs making 1 call to strict::import
4226µs219µs
# spent 15µs (11+4) within Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@4 which was called: # once (11µs+4µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.85 at line 4
use warnings;
# spent 15µs making 1 call to Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@4 # spent 4µs making 1 call to warnings::import
5
6288µs16µs
# spent 6µs within Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@6 which was called: # once (6µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.85 at line 6
use Foswiki::Plugins::JQueryPlugin::Plugin;
717µsour @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin );
8
9=begin TML
10
11---+ package Foswiki::Plugins::JQueryPlugin::METADATA
12
13This is the perl stub for the jquery.metadata plugin.
14
15=cut
16
17=begin TML
18
19---++ ClassMethod new( $class, ... )
20
21Constructor
22
23=cut
24
25
# spent 40µs (22+18) within Foswiki::Plugins::JQueryPlugin::METADATA::new which was called: # once (22µs+18µs) by Foswiki::Plugins::JQueryPlugin::Plugins::load at line 290 of /var/www/foswikidev/core/lib/Foswiki/Plugins/JQueryPlugin/Plugins.pm
sub new {
261600ns my $class = shift;
27
28116µs118µs my $this = bless(
# spent 18µs making 1 call to Foswiki::Plugins::JQueryPlugin::Plugin::new
29 $class->SUPER::new(
30 name => 'Metadata',
31 version => '2.1ef2bb44c86f5d0e98d55',
32 author =>
33 'John Resig, Yehuda Katz, Joern Zaefferer, Paul <nop>McLanahan',
34 homepage => 'https://github.com/MichaelDaum/jquery-metadata',
35 javascript => ['jquery.metadata.js'],
36 ),
37 $class
38 );
39
4013µs return $this;
41}
42
4313µs1;
44__END__