Filename | /home/mickey/git_tree/PONAPI/Server/lib/PONAPI/CLI/Command/manual.pm |
Statements | Executed 9 statements in 1.05ms |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 8.94ms | 12.3ms | BEGIN@9 | PONAPI::CLI::Command::manual::
1 | 1 | 1 | 18µs | 200µs | BEGIN@4 | PONAPI::CLI::Command::manual::
1 | 1 | 1 | 8µs | 13µs | BEGIN@7 | PONAPI::CLI::Command::manual::
1 | 1 | 1 | 6µs | 18µs | BEGIN@6 | PONAPI::CLI::Command::manual::
0 | 0 | 0 | 0s | 0s | abstract | PONAPI::CLI::Command::manual::
0 | 0 | 0 | 0s | 0s | description | PONAPI::CLI::Command::manual::
0 | 0 | 0 | 0s | 0s | execute | PONAPI::CLI::Command::manual::
0 | 0 | 0 | 0s | 0s | opt_spec | PONAPI::CLI::Command::manual::
0 | 0 | 0 | 0s | 0s | validate_args | PONAPI::CLI::Command::manual::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | # ABSTRACT: ponapi manual | ||||
2 | package PONAPI::CLI::Command::manual; | ||||
3 | |||||
4 | 2 | 28µs | 2 | 382µs | # spent 200µs (18+182) within PONAPI::CLI::Command::manual::BEGIN@4 which was called:
# once (18µs+182µs) by Module::Runtime::require_module at line 4 # spent 200µs making 1 call to PONAPI::CLI::Command::manual::BEGIN@4
# spent 182µs making 1 call to Sub::Exporter::__ANON__[Sub/Exporter.pm:337] |
5 | |||||
6 | 2 | 20µs | 2 | 29µs | # spent 18µs (6+12) within PONAPI::CLI::Command::manual::BEGIN@6 which was called:
# once (6µs+12µs) by Module::Runtime::require_module at line 6 # spent 18µs making 1 call to PONAPI::CLI::Command::manual::BEGIN@6
# spent 12µs making 1 call to strict::import |
7 | 2 | 19µs | 2 | 17µs | # spent 13µs (8+5) within PONAPI::CLI::Command::manual::BEGIN@7 which was called:
# once (8µs+5µs) by Module::Runtime::require_module at line 7 # spent 13µs making 1 call to PONAPI::CLI::Command::manual::BEGIN@7
# spent 5µs making 1 call to warnings::import |
8 | |||||
9 | 2 | 977µs | 1 | 12.3ms | # spent 12.3ms (8.94+3.33) within PONAPI::CLI::Command::manual::BEGIN@9 which was called:
# once (8.94ms+3.33ms) by Module::Runtime::require_module at line 9 # spent 12.3ms making 1 call to PONAPI::CLI::Command::manual::BEGIN@9 |
10 | |||||
11 | sub abstract { "Show the PONAPI server manual" } | ||||
12 | sub description { "This tool will run perldoc PONAPI::Manual" } | ||||
13 | sub opt_spec {} | ||||
14 | sub validate_args {} | ||||
15 | |||||
16 | sub execute { | ||||
17 | local $ARGV[0] = "PONAPI::Manual"; | ||||
18 | Pod::Perldoc->run() | ||||
19 | } | ||||
20 | |||||
21 | 1 | 2µs | 1; |