Filename | /usr/local/src/github.com/foswiki/core/lib/Foswiki/Plugins/JQueryPlugin/LIVEQUERY.pm |
Statements | Executed 11 statements in 308µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 36µs | 87µs | new | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
1 | 1 | 1 | 30µs | 38µs | BEGIN@3 | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
1 | 1 | 1 | 22µs | 41µs | BEGIN@4 | Foswiki::Plugins::JQueryPlugin::LIVEQUERY::
1 | 1 | 1 | 11µs | 11µ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 | 48µs | 2 | 45µs | # spent 38µs (30+8) within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@3 which was called:
# once (30µs+8µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.22 at line 3 # spent 38µs making 1 call to Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@3
# spent 8µs making 1 call to strict::import |
4 | 2 | 51µs | 2 | 59µs | # spent 41µs (22+18) within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@4 which was called:
# once (22µs+18µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.22 at line 4 # spent 41µs making 1 call to Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@4
# spent 18µs making 1 call to warnings::import |
5 | |||||
6 | 2 | 159µs | 1 | 11µs | # spent 11µs within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::BEGIN@6 which was called:
# once (11µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.22 at line 6 # spent 11µ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 87µs (36+52) within Foswiki::Plugins::JQueryPlugin::LIVEQUERY::new which was called:
# once (36µs+52µs) by Foswiki::Plugins::JQueryPlugin::Plugins::load at line 216 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Plugins/JQueryPlugin/Plugins.pm | ||||
26 | 3 | 35µs | my $class = shift; | ||
27 | |||||
28 | 1 | 52µs | my $this = bless( # spent 52µs making 1 call to Foswiki::Plugins::JQueryPlugin::Plugin::new | ||
29 | $class->SUPER::new( | ||||
30 | name => 'LiveQuery', | ||||
31 | version => '1.1.1', | ||||
32 | author => 'Brandon Aaron', | ||||
33 | homepage => 'http://github.com/brandonaaron/livequery', | ||||
34 | javascript => ['jquery.livequery.js'], | ||||
35 | ), | ||||
36 | $class | ||||
37 | ); | ||||
38 | |||||
39 | return $this; | ||||
40 | } | ||||
41 | |||||
42 | 1 | 6µs | 1; | ||
43 | |||||
44 | __END__ |