← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/local/src/github.com/foswiki/core/bin/view
  Run on Sun Dec 4 17:17:59 2011
Reported on Sun Dec 4 17:27:00 2011

Filename/usr/local/src/github.com/foswiki/core/lib/Foswiki/Plugins/JQueryPlugin/METADATA.pm
StatementsExecuted 11 statements in 302µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11137µs93µsFoswiki::Plugins::JQueryPlugin::METADATA::::newFoswiki::Plugins::JQueryPlugin::METADATA::new
11132µs39µsFoswiki::Plugins::JQueryPlugin::METADATA::::BEGIN@3Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@3
11118µs35µsFoswiki::Plugins::JQueryPlugin::METADATA::::BEGIN@4Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@4
11110µs10µ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;
3249µs246µs
# spent 39µs (32+7) within Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@3 which was called: # once (32µs+7µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.59 at line 3
use strict;
# spent 39µs making 1 call to Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@3 # spent 7µs making 1 call to strict::import
4246µs252µs
# spent 35µs (18+17) within Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@4 which was called: # once (18µs+17µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.59 at line 4
use warnings;
# spent 35µs making 1 call to Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@4 # spent 17µs making 1 call to warnings::import
5
62156µs110µs
# spent 10µs within Foswiki::Plugins::JQueryPlugin::METADATA::BEGIN@6 which was called: # once (10µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.59 at line 6
use Foswiki::Plugins::JQueryPlugin::Plugin;
7110µ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 93µs (37+56) within Foswiki::Plugins::JQueryPlugin::METADATA::new which was called: # once (37µs+56µs) by Foswiki::Plugins::JQueryPlugin::Plugins::load at line 216 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Plugins/JQueryPlugin/Plugins.pm
sub new {
26336µs my $class = shift;
27
28156µs my $this = bless(
# spent 56µ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
40 return $this;
41}
42
4316µs1;
44__END__