Filename | /usr/local/src/github.com/foswiki/core/lib/Foswiki/Plugins/JQueryPlugin/TEXTBOXLIST.pm |
Statements | Executed 11 statements in 343µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 42µs | 134µs | new | Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::
1 | 1 | 1 | 32µs | 39µs | BEGIN@3 | Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::
1 | 1 | 1 | 19µs | 19µs | BEGIN@6 | Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::
1 | 1 | 1 | 17µs | 35µs | BEGIN@4 | Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::
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::TEXTBOXLIST; | ||||
3 | 2 | 52µs | 2 | 47µs | # spent 39µs (32+8) within Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::BEGIN@3 which was called:
# once (32µs+8µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.57 at line 3 # spent 39µs making 1 call to Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::BEGIN@3
# spent 7µs making 1 call to strict::import |
4 | 2 | 47µs | 2 | 53µs | # spent 35µs (17+18) within Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::BEGIN@4 which was called:
# once (17µs+18µs) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.57 at line 4 # spent 35µs making 1 call to Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::BEGIN@4
# spent 18µs making 1 call to warnings::import |
5 | |||||
6 | 2 | 178µs | 1 | 19µs | # spent 19µs within Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::BEGIN@6 which was called:
# once (19µs+0s) by Foswiki::Plugins::JQueryPlugin::Plugins::BEGIN@1.57 at line 6 # spent 19µs making 1 call to Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::BEGIN@6 |
7 | 1 | 14µs | our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); | ||
8 | |||||
9 | =begin TML | ||||
10 | |||||
11 | ---+ package Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST | ||||
12 | |||||
13 | This is the perl stub for the jquery.textboxlist plugin. | ||||
14 | |||||
15 | =cut | ||||
16 | |||||
17 | =begin TML | ||||
18 | |||||
19 | ---++ ClassMethod new( $class, ... ) | ||||
20 | |||||
21 | Constructor | ||||
22 | |||||
23 | =cut | ||||
24 | |||||
25 | # spent 134µs (42+92) within Foswiki::Plugins::JQueryPlugin::TEXTBOXLIST::new which was called:
# once (42µs+92µ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 | 1 | 2µs | my $class = shift; | ||
27 | |||||
28 | 1 | 37µs | 1 | 92µs | my $this = bless( # spent 92µs making 1 call to Foswiki::Plugins::JQueryPlugin::Plugin::new |
29 | $class->SUPER::new( | ||||
30 | name => 'TextboxList', | ||||
31 | version => '1.0', | ||||
32 | author => 'Michael Daum', | ||||
33 | homepage => 'http://foswiki.org/Extensions/JQueryPlugin', | ||||
34 | css => ['jquery.textboxlist.css'], | ||||
35 | javascript => | ||||
36 | [ 'jquery.textboxlist.js', 'jquery.textboxlist.init.js' ], | ||||
37 | dependencies => [ 'ui', 'metadata', 'livequery' ], | ||||
38 | ), | ||||
39 | $class | ||||
40 | ); | ||||
41 | |||||
42 | 1 | 7µs | return $this; | ||
43 | } | ||||
44 | |||||
45 | 1 | 6µs | 1; | ||
46 | |||||
47 | __END__ |