← 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/Backtick.pm
StatementsExecuted 11 statements in 188µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
111149µs217µsPPI::Token::QuoteLike::Backtick::::BEGIN@32PPI::Token::QuoteLike::Backtick::BEGIN@32
11114µs26µsPPI::Token::QuoteLike::Backtick::::BEGIN@31PPI::Token::QuoteLike::Backtick::BEGIN@31
11110µs10µsPPI::Token::QuoteLike::Backtick::::BEGIN@36PPI::Token::QuoteLike::Backtick::BEGIN@36
1116µs32µsPPI::Token::QuoteLike::Backtick::::BEGIN@35PPI::Token::QuoteLike::Backtick::BEGIN@35
1113µs3µsPPI::Token::QuoteLike::Backtick::::BEGIN@33PPI::Token::QuoteLike::Backtick::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::Backtick;
2
3=pod
4
5=head1 NAME
6
7PPI::Token::QuoteLike::Backtick - A `backticks` command token
8
9=head1 INHERITANCE
10
11 PPI::Token::QuoteLike::Backtick
12 isa PPI::Token::QuoteLike
13 isa PPI::Token
14 isa PPI::Element
15
16=head1 DESCRIPTION
17
18A C<PPI::Token::QuoteLike::Backtick> object represents a command output
19capturing quote.
20
21=head1 METHODS
22
23There are no methods available for C<PPI::Token::QuoteLike::Backtick>
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
31219µs238µs
# spent 26µs (14+12) within PPI::Token::QuoteLike::Backtick::BEGIN@31 which was called: # once (14µs+12µs) by PPI::Token::BEGIN@58 at line 31
use strict;
# spent 26µs making 1 call to PPI::Token::QuoteLike::Backtick::BEGIN@31 # spent 12µs making 1 call to strict::import
32292µs1217µs
# spent 217µs (149+68) within PPI::Token::QuoteLike::Backtick::BEGIN@32 which was called: # once (149µs+68µs) by PPI::Token::BEGIN@58 at line 32
use PPI::Token::QuoteLike ();
# spent 217µs making 1 call to PPI::Token::QuoteLike::Backtick::BEGIN@32
33218µs13µs
# spent 3µs within PPI::Token::QuoteLike::Backtick::BEGIN@33 which was called: # once (3µs+0s) by PPI::Token::BEGIN@58 at line 33
use PPI::Token::_QuoteEngine::Simple ();
# spent 3µs making 1 call to PPI::Token::QuoteLike::Backtick::BEGIN@33
34
35229µs259µs
# spent 32µs (6+27) within PPI::Token::QuoteLike::Backtick::BEGIN@35 which was called: # once (6µs+27µs) by PPI::Token::BEGIN@58 at line 35
use vars qw{$VERSION @ISA};
# spent 32µs making 1 call to PPI::Token::QuoteLike::Backtick::BEGIN@35 # spent 27µs making 1 call to vars::import
36
# spent 10µs within PPI::Token::QuoteLike::Backtick::BEGIN@36 which was called: # once (10µs+0s) by PPI::Token::BEGIN@58 at line 42
BEGIN {
371300ns $VERSION = '1.215';
38110µs @ISA = qw{
39 PPI::Token::_QuoteEngine::Simple
40 PPI::Token::QuoteLike
41 };
42118µs110µs}
# spent 10µs making 1 call to PPI::Token::QuoteLike::Backtick::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