Filename | /var/www/foswiki11/lib/Foswiki/Plugins/JQueryPlugin/LIVEQUERY.pm |
Statements | Executed 11 statements in 239µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 31µs | 55µs | new | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
1 | 1 | 1 | 29µs | 47µs | BEGIN@3 | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
1 | 1 | 1 | 12µs | 20µs | BEGIN@4 | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
1 | 1 | 1 | 8µs | 8µs | BEGIN@6 | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # See bottom of file for license and copyright information | ||||
2 | package Foswiki::Plugins::JQueryPlugin::LIVEQUERY; | ||||
3 | 2 | 39µs | 2 | 65µs | # spent 47µs (29+18) within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@3 which was called:
# once (29µs+18µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.38 at line 3 # spent 47µs making 1 call to Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@3
# spent 18µs making 1 call to strict::import |
4 | 2 | 40µs | 2 | 27µs | # spent 20µs (12+7) within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@4 which was called:
# once (12µs+7µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.38 at line 4 # spent 20µs making 1 call to Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@4
# spent 7µs making 1 call to warnings::import |
5 | |||||
6 | 2 | 119µs | 1 | 8µs | # spent 8µs within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@6 which was called:
# once (8µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.38 at line 6 # spent 8µs making 1 call to Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@6 |
7 | 1 | 9µs | our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); | ||
8 | |||||
9 | =begin TML | ||||
10 | |||||
11 | ---+ package Foswiki::Plugins::JQueryPlugin::LIVEQUERY | ||||
12 | |||||
13 | This is the perl stub for the jquery.livequery plugin. | ||||
14 | |||||
15 | =cut | ||||
16 | |||||
17 | =begin TML | ||||
18 | |||||
19 | ---++ ClassMethod new( $class, ... ) | ||||
20 | |||||
21 | Constructor | ||||
22 | |||||
23 | =cut | ||||
24 | |||||
25 | # spent 55µs (31+24) within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::new which was called:
# once (31µs+24µs) by Foswiki::Plugins::JQueryPlugin::Plugins::load at line 251 of /var/www/foswiki11/lib/Foswiki/Plugins/JQueryPlugin/Plugins.pm | ||||
26 | 1 | 600ns | my $class = shift; | ||
27 | |||||
28 | 1 | 24µs | 1 | 24µs | my $this = bless( # spent 24µs making 1 call to Foswiki::Plugins::JQueryPlugin::Plugin::new |
29 | $class->SUPER::new( | ||||
30 | name => 'LiveQuery', | ||||
31 | version => '1.3.1', | ||||
32 | author => 'Brandon Aaron, Alexander Zaytsev', | ||||
33 | homepage => 'https://github.com/hazzik/livequery', | ||||
34 | javascript => ['jquery.livequery.js'], | ||||
35 | ), | ||||
36 | $class | ||||
37 | ); | ||||
38 | |||||
39 | 1 | 4µs | return $this; | ||
40 | } | ||||
41 | |||||
42 | 1 | 4µs | 1; | ||
43 | |||||
44 | __END__ |