← Index
NYTProf Performance Profile   « line view »
For /Users/timbo/perl5/perlbrew/perls/perl-5.18.2/bin/perlcritic
  Run on Sat Mar 19 22:12:22 2016
Reported on Sat Mar 19 22:14:10 2016

Filename/Users/timbo/perl5/perlbrew/perls/perl-5.18.2/lib/site_perl/5.18.2/PPI/Token/QuoteLike/Command.pm
StatementsExecuted 11 statements in 114µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11116µs28µsPPI::Token::QuoteLike::Command::::BEGIN@31PPI::Token::QuoteLike::Command::BEGIN@31
1119µs9µsPPI::Token::QuoteLike::Command::::BEGIN@36PPI::Token::QuoteLike::Command::BEGIN@36
1116µs41µsPPI::Token::QuoteLike::Command::::BEGIN@35PPI::Token::QuoteLike::Command::BEGIN@35
1113µs3µsPPI::Token::QuoteLike::Command::::BEGIN@32PPI::Token::QuoteLike::Command::BEGIN@32
1113µs3µsPPI::Token::QuoteLike::Command::::BEGIN@33PPI::Token::QuoteLike::Command::BEGIN@33
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package PPI::Token::QuoteLike::Command;
2
3=pod
4
5=head1 NAME
6
7PPI::Token::QuoteLike::Command - The command quote-like operator
8
9=head1 INHERITANCE
10
11 PPI::Token::QuoteLike::Command
12 isa PPI::Token::QuoteLike
13 isa PPI::Token
14 isa PPI::Element
15
16=head1 DESCRIPTION
17
18A C<PPI::Token::QuoteLike::Command> object represents a command output
19capturing quote-like operator.
20
21=head1 METHODS
22
23There are no methods available for C<PPI::Token::QuoteLike::Command>
24beyond those provided by the parent L<PPI::Token::QuoteLike>, L<PPI::Token>
25and L<PPI::Element> classes.
26
27Got any ideas for methods? Submit a report to rt.cpan.org!
28
29=cut
30
31218µs239µs
# spent 28µs (16+12) within PPI::Token::QuoteLike::Command::BEGIN@31 which was called: # once (16µs+12µs) by PPI::Token::BEGIN@59 at line 31
use strict;
# spent 28µs making 1 call to PPI::Token::QuoteLike::Command::BEGIN@31 # spent 12µs making 1 call to strict::import
32214µs13µs
# spent 3µs within PPI::Token::QuoteLike::Command::BEGIN@32 which was called: # once (3µs+0s) by PPI::Token::BEGIN@59 at line 32
use PPI::Token::QuoteLike ();
# spent 3µs making 1 call to PPI::Token::QuoteLike::Command::BEGIN@32
33218µs13µs
# spent 3µs within PPI::Token::QuoteLike::Command::BEGIN@33 which was called: # once (3µs+0s) by PPI::Token::BEGIN@59 at line 33
use PPI::Token::_QuoteEngine::Full ();
# spent 3µs making 1 call to PPI::Token::QuoteLike::Command::BEGIN@33
34
35229µs277µs
# spent 41µs (6+35) within PPI::Token::QuoteLike::Command::BEGIN@35 which was called: # once (6µs+35µs) by PPI::Token::BEGIN@59 at line 35
use vars qw{$VERSION @ISA};
# spent 41µs making 1 call to PPI::Token::QuoteLike::Command::BEGIN@35 # spent 35µs making 1 call to vars::import
36
# spent 9µs within PPI::Token::QuoteLike::Command::BEGIN@36 which was called: # once (9µs+0s) by PPI::Token::BEGIN@59 at line 42
BEGIN {
371300ns $VERSION = '1.215';
38110µs @ISA = qw{
39 PPI::Token::_QuoteEngine::Full
40 PPI::Token::QuoteLike
41 };
42123µs19µs}
# spent 9µs making 1 call to PPI::Token::QuoteLike::Command::BEGIN@36
43
4412µs1;
45
46=pod
47
48=head1 SUPPORT
49
50See the L<support section|PPI/SUPPORT> in the main module.
51
52=head1 AUTHOR
53
54Adam Kennedy E<lt>adamk@cpan.orgE<gt>
55
56=head1 COPYRIGHT
57
58Copyright 2001 - 2011 Adam Kennedy.
59
60This program is free software; you can redistribute
61it and/or modify it under the same terms as Perl itself.
62
63The full text of the license can be found in the
64LICENSE file included with this module.
65
66=cut